From 3ce34dffa9a8f31cac5ef2ff272140e9df9b87fe Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Thu, 8 Feb 2024 14:52:51 -0800 Subject: [PATCH 01/14] added workflow (#174) Co-authored-by: Chris Schraer --- .github/workflows/sync-to-ado.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/sync-to-ado.yaml diff --git a/.github/workflows/sync-to-ado.yaml b/.github/workflows/sync-to-ado.yaml new file mode 100644 index 00000000..81e0c649 --- /dev/null +++ b/.github/workflows/sync-to-ado.yaml @@ -0,0 +1,28 @@ +name: Sync issue to Azure DevOps work item + +on: + issues: + types: + [opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned] + issue_comment: + types: [created, edited, deleted] + +jobs: + alert: + if: ${{ !github.event.issue.pull_request }} + runs-on: ubuntu-latest + steps: + - uses: danhellem/github-actions-issue-to-work-item@master + env: + ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" + github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}" + ado_organization: "msdata" + ado_project: "Vienna" + ado_area_path: "Vienna\\Experiences\\Core SDK\\AI CLI" + ado_iteration_path: "Vienna\\Backlog" + ado_wit: "Task" + ado_new_state: "To Do" + ado_active_state: "Active" + ado_close_state: "Done" + ado_bypassrules: true + log_level: 100 \ No newline at end of file From 54cc1fc376e0c236136cb8faa1076293c9b8e0bd Mon Sep 17 00:00:00 2001 From: pankopon <55108151+pankopon@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:43:46 -0800 Subject: [PATCH 02/14] Windows installer (#177) Add a Windows x64 installer. This is built and uploaded to csspeechstorage only if PublishDevBuild or IsRelease is true. --- .azure/pipelines/build.yaml | 67 ++++++++++- .azure/pipelines/scripts/set-variables.sh | 79 +++++++++++-- .azure/pipelines/sign-dll-exe.yaml | 60 ++++++++++ scripts/Azure-AI-CLI-Bundle.wxs | 79 +++++++++++++ scripts/Azure-AI-CLI.wxs | 134 +++++++++++++++++++--- scripts/InstallCLI.cmd | 2 - scripts/UninstallCLI.cmd | 2 - scripts/WindowsInstaller.png | Bin 0 -> 2795 bytes scripts/WixBuildInstaller.cmd | 94 +++++++++++++++ scripts/WixRunInsignia.cmd | 73 ++++++++++++ 10 files changed, 557 insertions(+), 33 deletions(-) create mode 100644 .azure/pipelines/sign-dll-exe.yaml create mode 100644 scripts/Azure-AI-CLI-Bundle.wxs delete mode 100644 scripts/InstallCLI.cmd delete mode 100644 scripts/UninstallCLI.cmd create mode 100644 scripts/WindowsInstaller.png create mode 100644 scripts/WixBuildInstaller.cmd create mode 100644 scripts/WixRunInsignia.cmd diff --git a/.azure/pipelines/build.yaml b/.azure/pipelines/build.yaml index a629f4df..c0ec111d 100644 --- a/.azure/pipelines/build.yaml +++ b/.azure/pipelines/build.yaml @@ -19,7 +19,7 @@ stages: name: Variables inputs: filePath: ./.azure/pipelines/scripts/set-variables.sh - arguments: '0.0.0-dev2024.$(Build.BuildId)' + arguments: '$(PublishDevBuild) $(Build.BuildNumber) $(Build.BuildId)' displayName: 'Set up environment variables' - stage: BuildStage @@ -66,11 +66,12 @@ stages: inputs: filePath: ./scripts/InstallAzureAICLIDeb-UpdateVersion.sh arguments: '$(AICLIVersion) $(Build.StagingDirectory)' - - task: PublishPipelineArtifact@1 + - task: PublishBuildArtifacts@1 displayName: Publish artifacts inputs: + pathToPublish: '$(Build.ArtifactStagingDirectory)' targetPath: '$(Build.StagingDirectory)' - artifact: 'ai-cli-artifacts' + artifactName: 'ai-cli-artifacts' - job: Publish dependsOn: [Build] @@ -187,6 +188,66 @@ stages: docker tag acrbn.azurecr.io/azure-ai-cli:bookworm-$(AICLIVersion) acrbn.azurecr.io/azure-ai-cli:latest docker push acrbn.azurecr.io/azure-ai-cli:latest +- stage: BuildInstallerStage + dependsOn: SetupStage + condition: and(succeeded(), or(eq(variables['IsRelease'], 'true'), eq(variables['PublishDevBuild'], 'true'))) + pool: + name: SkymanWS2022Compliant + jobs: + - job: BuildWindowsInstaller + variables: + AICLIVersion: $[ stageDependencies.SetupStage.SetupJob.outputs['Variables.AICLIVersion']] + AICLISemVerVersion: $[ stageDependencies.SetupStage.SetupJob.outputs['Variables.AICLISemVerVersion']] + steps: + - script: call WixBuildInstaller.cmd $(AICLIVersion) $(AICLISemVerVersion) + workingDirectory: $(Build.SourcesDirectory)/scripts + failOnStderr: true + displayName: Build installation package bundle + + - script: call WixRunInsignia.cmd detach x64 $(AICLIVersion) + workingDirectory: $(Build.SourcesDirectory)/scripts + failOnStderr: true + displayName: Detach bundle bootstrap engine + + - template: sign-dll-exe.yaml + parameters: + displayName: Sign bundle bootstrap engine + folderPath: '$(Build.SourcesDirectory)/scripts' + pattern: 'engine-*.exe' + + - script: call WixRunInsignia.cmd attach x64 $(AICLIVersion) + workingDirectory: $(Build.SourcesDirectory)/scripts + failOnStderr: true + displayName: Re-attach bootstrap bundle engine + + - template: sign-dll-exe.yaml + parameters: + displayName: Sign installer + folderPath: '$(Build.SourcesDirectory)/scripts' + pattern: 'Azure-AI-CLI-Setup-*.exe' + + - task: CopyFiles@2 + inputs: + sourceFolder: '$(Build.SourcesDirectory)/scripts' + contents: 'Azure-AI-CLI-Setup-*.exe' + targetFolder: '$(Build.ArtifactStagingDirectory)' + displayName: Copy files + + - task: PublishBuildArtifacts@1 + inputs: + pathToPublish: '$(Build.ArtifactStagingDirectory)' + targetPath: '$(Build.StagingDirectory)' + artifactName: 'ai-cli-artifacts' + displayName: Publish artifacts + + - task: AzureCLI@2 + inputs: + azureSubscription: 'Carbon Dropper (CSSpeechStorage Drop)' + scriptType: 'bash' + arguments: '$(Build.ArtifactStagingDirectory)/Azure-AI-CLI-Setup-$(AICLIVersion)-x64.exe private/ai/Azure-AI-CLI-Setup-$(AICLIVersion)-x64.exe' + scriptPath: './.azure/pipelines/scripts/upload-file.sh' + displayName: Upload Windows installer + - stage: TestStage dependsOn: [SetupStage, BuildStage] condition: and(succeeded(), or(eq(variables['IsRelease'], 'true'), eq(variables['TestDevBuild'], 'true'))) diff --git a/.azure/pipelines/scripts/set-variables.sh b/.azure/pipelines/scripts/set-variables.sh index 4d6ac2fc..6d8fe69a 100644 --- a/.azure/pipelines/scripts/set-variables.sh +++ b/.azure/pipelines/scripts/set-variables.sh @@ -1,23 +1,88 @@ #!/bin/bash define_variable () { + echo "$1=$2" echo "##vso[task.setvariable variable=$1;isOutput=true]$2" } +PUBLISH_DEV_BUILD=$1 +BUILD_NUMBER=$2 +BUILD_ID=$3 + echo "Source branch: $BUILD_SOURCEBRANCH" -# if the user passed in a custom dev branch, use it -if [ ! -z "$1" ]; then - DEV_VERSION="$1" -else - DEV_VERSION="0.0.0-dev" -fi +PUBLISH_BUILD=false # If the build was triggered from a tag, use the tag as the version. Otherwise, set the version to dev. REGEX='^refs\/tags\/v?([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)(-.+)?' # If tag is a release tag, set up release variables. -[[ $BUILD_SOURCEBRANCH =~ $REGEX ]] && define_variable "IsRelease" "true" || define_variable "IsRelease" "false" +if [[ $BUILD_SOURCEBRANCH =~ $REGEX ]]; then + define_variable "IsRelease" "true" + PUBLISH_BUILD=true +else + define_variable "IsRelease" "false" +fi + +if [[ $PUBLISH_DEV_BUILD = true ]]; then + PUBLISH_BUILD=true +fi + +# Determine the product version (major.minor.build). +# ref. https://learn.microsoft.com/windows/win32/msi/productversion +# NOTE: If the major or minor version is not updated before a new year, the version number becomes ambiguous +# and it may not be possible to upgrade an old version from the previous year without manual uninstallation. +# Example: +# - last build of year N: 1.0.36599 +# - first build of year N+1: 1.0.101 -> cannot update with this, must uninstall 1.0.36599 first. + +MAJOR_VERSION="0" +MINOR_VERSION="0" +BUILD_VERSION="0" + +# Parse Build.BuildNumber for build date and daily run # (max 99). +if [ ! -z "$BUILD_NUMBER" ]; then + # e.g. "20240120.2" -> build year 2024, month 01, day 20, run 2 + BUILD_YEAR=$(echo "$BUILD_NUMBER" | sed 's/^\([0-9]\{4\}\)[0-9]\{4\}\.[0-9]*$/\1/') + BUILD_MONTH=$(echo "$BUILD_NUMBER" | sed 's/^[0-9]\{4\}\([0-9]\{2\}\)[0-9]\{2\}\.[0-9]*$/\1/') + BUILD_DAY=$(echo "$BUILD_NUMBER" | sed 's/^[0-9]\{6\}\([0-9]\{2\}\)\.[0-9]*$/\1/') + BUILD_RUN=$(echo "$BUILD_NUMBER" | sed 's/^[0-9]\{8\}\.\([0-9]*$\)/\1/') + # Remove a potential leading zero to avoid interpretation as an octal number. + BUILD_MONTH=${BUILD_MONTH#0} + BUILD_DAY=${BUILD_DAY#0} + BUILD_RUN=${BUILD_RUN#0} + + if [[ $PUBLISH_BUILD = true ]]; then + # Set the version for a published build. Note: BUILD_SOURCEBRANCH may override this. + MAJOR_VERSION="1" + MINOR_VERSION="0" + BUILD_VERSION="0" + + if [ ! -z "$BUILD_MONTH" -a $BUILD_MONTH -ge 1 -a $BUILD_MONTH -le 12 -a \ + ! -z "$BUILD_DAY" -a $BUILD_DAY -ge 1 -a $BUILD_DAY -le 31 -a \ + ! -z "$BUILD_RUN" -a $BUILD_RUN -ge 1 -a $BUILD_RUN -le 99 ] + then + let DayOfYear="($BUILD_MONTH - 1) * 31 + $BUILD_DAY" # estimate using max days/month + if [ $BUILD_RUN -lt 10 ]; then + BUILD_VERSION="${DayOfYear}0${BUILD_RUN}" + else + BUILD_VERSION="${DayOfYear}${BUILD_RUN}" + fi + else + >&2 echo "Ignored invalid argument: Build.BuildNumber $BUILD_NUMBER" + fi + fi +fi + +PRODUCT_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${BUILD_VERSION}" +echo "Product version: $PRODUCT_VERSION" + +# Append Build.BuildId to version string. +if [ ! -z "$BUILD_ID" ]; then + DEV_VERSION="${PRODUCT_VERSION}-dev${BUILD_YEAR}.${BUILD_ID}" +else + DEV_VERSION="${PRODUCT_VERSION}-dev${BUILD_YEAR}" +fi # Extract version from the tag. VERSION=$([[ $BUILD_SOURCEBRANCH =~ $REGEX ]] && echo $(echo $BUILD_SOURCEBRANCH | sed -r 's/'$REGEX'/\1.\2.\3\4/') || echo "$DEV_VERSION") diff --git a/.azure/pipelines/sign-dll-exe.yaml b/.azure/pipelines/sign-dll-exe.yaml new file mode 100644 index 00000000..8e5388a2 --- /dev/null +++ b/.azure/pipelines/sign-dll-exe.yaml @@ -0,0 +1,60 @@ +parameters: + - name: displayName + type: string + default: 'Sign dlls' + - name: folderPath + type: string + - name: pattern + type: string + default: '*.dll' + - name: condition + type: boolean + default: true + +steps: +- task: EsrpCodeSigning@2 + displayName: ${{ parameters.displayName }} + inputs: + ConnectedServiceName: 'Speech SDK ESRP Signing Alternate' + FolderPath: '${{ parameters.folderPath }}' + Pattern: '${{ parameters.pattern }}' + signConfigType: inlineSignParams + inlineOperation: | + [ + { + "keyCode": "CP-230012", + "operationSetCode": "SigntoolSign", + "parameters": [ + { + "parameterName": "OpusName", + "parameterValue": "Microsoft" + }, + { + "parameterName": "OpusInfo", + "parameterValue": "http://www.microsoft.com" + }, + { + "parameterName": "PageHash", + "parameterValue": "/NPH" + }, + { + "parameterName": "FileDigest", + "parameterValue": "/fd sha256" + }, + { + "parameterName": "TimeStamp", + "parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256" + } + ], + "toolName": "signtool.exe", + "toolVersion": "6.2.9304.0" + }, + { + "keyCode": "CP-230012", + "operationSetCode": "SigntoolVerify", + "parameters": [ ], + "toolName": "signtool.exe", + "toolVersion": "6.2.9304.0" + } + ] + condition: succeeded() diff --git a/scripts/Azure-AI-CLI-Bundle.wxs b/scripts/Azure-AI-CLI-Bundle.wxs new file mode 100644 index 00000000..13ed5ffb --- /dev/null +++ b/scripts/Azure-AI-CLI-Bundle.wxs @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + NOT WixBundleAction = 5 OR NOT AlreadyInstalledVersion >= v$(var.productVersion) + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/scripts/Azure-AI-CLI.wxs b/scripts/Azure-AI-CLI.wxs index 5282adc3..31fada63 100644 --- a/scripts/Azure-AI-CLI.wxs +++ b/scripts/Azure-AI-CLI.wxs @@ -1,39 +1,135 @@ - - - + + + + + + + + + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + - NOT Installed - Installed + + + NOT Installed OR REINSTALL OR UPGRADINGPRODUCTCODE + NOT Installed OR REINSTALL OR UPGRADINGPRODUCTCODE + NOT Installed OR REINSTALL OR UPGRADINGPRODUCTCODE + NOT Installed OR REINSTALL OR UPGRADINGPRODUCTCODE + + Installed AND NOT REINSTALL AND NOT UPGRADINGPRODUCTCODE - + - + - + diff --git a/scripts/InstallCLI.cmd b/scripts/InstallCLI.cmd deleted file mode 100644 index f8908167..00000000 --- a/scripts/InstallCLI.cmd +++ /dev/null @@ -1,2 +0,0 @@ -@echo off -dotnet.exe tool install --global Azure.AI.CLI diff --git a/scripts/UninstallCLI.cmd b/scripts/UninstallCLI.cmd deleted file mode 100644 index 113d51cd..00000000 --- a/scripts/UninstallCLI.cmd +++ /dev/null @@ -1,2 +0,0 @@ -@echo off -dotnet.exe tool uninstall --global Azure.AI.CLI \ No newline at end of file diff --git a/scripts/WindowsInstaller.png b/scripts/WindowsInstaller.png new file mode 100644 index 0000000000000000000000000000000000000000..150a14096728fde49582457aa9bc29bba4dcda35 GIT binary patch literal 2795 zcmVVGd01AsqL_t(|+U=TcY*W`6$A9%-woRJIT=Q2=fU2sjTel8bmaqF+EiEnh{eGI8n*sg> zYy#R+nt*6Dir4Fcwh9t$Ue&q9O;Q~pE+u`X8I}_JKHaIyKJ_LRQ6a&8o@_?UJgC>J)hTq=uD*%KL zNuOUk0uV41if_KQ5Nw&SSHOeA2X6s3Nbu-+7}Vi2pO4FZy_5SRaDyQU2xdW^9h{c< zp>G1Z0lx+);MAdgAVfe_32E9livU{`D!s5rKsK-uI0-x?fjt8A>%eZ6_~3F4hAe|g z{^k&1nBc?jz{di93Iu`Uz+J%I=i=63vr4>n;tZHgAf`ZvZX^L#;IM$Zfn9(bSS!Jr z)1aH7DH!BvT^+>3+|&s1WIu5K{{7GT{eB}D430H-n@vA@^l0K*2R;Dq2WkLahuHxz zWT@`xrCW&*lcdBipE;O;bI4A2DihGt)ARb^;2=XoL&*!7&6v$*jvP6XxTgWX1C9dE z18q8dt0f-l&bGHRpy@Ci;w9O@9da|f%ahs!M59rjdFB~hE?3h1Lx&FWzylBP^2;wL zxxh!jT@tLg0!s$LVU>98lha@xwKbDY$*B@_6ClS@*9G2q;|)<>UQT&=dD8v&-g|FU z8f#ole1IYeo<9L$8-$`m{J!F|_~Azc&!n;9tEqSU$0;EX}1^*WT z+qZA`jGN3z(!H9d{h+_Ue@tH9+S#t;3~k-IRocCKci+mDD|1$_UOn!ZhaP%}0|yS^bUOLRp+f}v`;or1>7z%F zCJ{K{&6~{#Ax7(pH02uLa5zkrm6c%;~~)BKW5C^Z@AX5#aOrxVfN!yqPn{ zo!{TzPaqJOykbg{uvjcCTC@n@P9emJDYbw{AANLlSy|cEqN1W@gM))(2pBC^sYN;%;vGnkF?4nkw{X=yk={}Vqx*(#hf{F231wZBw$k(1_uWR*|B5CnENli z^wNKwH}d_N$}?0|RV9(5X&Nmpts@Z!r_=dA@29G&>Z{EIMwEB7FOOE^YpK!BojVai z(C>AkEOzjl1u~Z|ol98H(xocx?Q41Dkw?%pjc7E=`t|F_wFa-(i`(tSVzFScSW>GR z{IUz!?RMtOo<(EShTG^z!H#ByY11SumT1BqWZA%Kwc&I+i4F}R%QE%#^^8|sc|0C$ zHXG4sH1*11Y1p52!@z2_GI!Q2zPG%T%30rKwK#_EvVrAl9$_+>k}T+l8#kgwqZqLm z+g^N;hK7bQYZMg~F>~fj!r?GkSy?0cVMz%BV!BRiOAAFe-^|~S93iw|0j)cBU^+g; zG3ibU8k@;$=z_&Mt5)4fb@dkv3=AaZhx+>BF<#d>c<>-kKKUdYHf&(cnl*_rBS~3) zem-m0t_7G4blz|RI=Z?LKv6*fO>J$M&1Ou1Ng0AWz;s$iG7ALoL?!&8L`MjLra9>8 zxer;6AxRQ;hl8w~9F{CuLM#^J%{Sj<*REaH(jyPhpAs(MbU3iv?F>dD1pIzV?zjX0 zY!B|~@OckNGa#(EkQIZho?ecB5$_Gg&mj|46`U>?E|-frH{Ha*zyNF3tl{Fti(I^T zG1lGP{pOc+)(rIB5DgeF8cfU1#_e*^?(^aE`FQr(XX(s{G9x#@*$x>gA9`D}=?`bK zys?w_g41|#p@UqvMt3(TgM-YRGY8M~=`2{VfSQ^bo__ji4jec@I2=~HySulfOgVh| z^l7|aFF83meER990JL>{Umo6d8GWn{5TUs+PeY+D0IGGQhbwQjv&c*_=|LqixsP*YRG(xppjYipyaxtWfR z4$8~Rk!2Yn1l`@;sY8IS>l73e(A?ZiMn(oMmy3>$j(ENw3}Us}$elI~Aq0hmg-Ic9 zq;DXEKxi5kt2GhlbzP^jvXV$7LL?H2TTgyILI~R1+f#=C!!XFn$)Ta40k79fR#p}l zE?h|D@v5RQBPRy|OrJhIsdgV4PH+svz~OKZ4u_E>iC8Q~W@aX}wY4aUf+R`kx=v0` z4nhd*c6;g&V6j*@fBrnBrKQx@*Hc?tOKE9o!Ub|Y9va))kcJPfs%pZAM+zQEk~ndq z9JkvIz`Vjj!r^dY4WG})sZ*yCy@Sarp(llaSS-fvx8F`hMFqvh#S|44B?^+(VG%4E z7Qwc*wxokIoEqC~HiRgruKpc1eh!U>nO&S@8!G|G%gbZkx^;;;ot>RjR8*vn2-elr zv2fu+g25nNU0uwdKOcbUxw%Zs&ZeuckB>k4h=s+)WM^lSpPvsvW@ctW0}R8=%ozjN zw7K*LEWGvC29~YQLqR8x3`&>-z~hfUPIYxPSFT){R06K+O{1!+*zI<7T}M%rL`7yc zn~`N1e;|ObtE)B;2qdMsqw{_tATtweRwv-3wq2zr?59J7=^;XhA;LtdJX49HC_6); zkT)d=&@_!(Z@rbOsw%Rxv$^fI+qiV;5&*$)n5NcNwr}4KFfSMkqN*wuiv_paJ?zU8 zLR@X2cnTqZo)t``{NyjEkfRd446vVz9HI%E$&ATl(txhXF4`vY9$>4cX|LXQ-+h#n zlu%b!M^8@=D^{!+9qy`u1tS*^Km72$u~_V%&pr1XLI`X&A6Ba$O*2ti3e7B_P0QdH zHE`mX8MF$D3*7wt{$=c(`+cso)=NwQCZqv-_Uu8HW%ljchuv-`8jYgs`sfbMT|iS( zec*JSR1{_2!Gi~Dgb*xWKAT00rYF8vi2n;jivegXI{Y_mBF3Ng+ObZ{m`^JbQ}BX( zLIeZ?fllD#zP@YLAN9ol?2*9Uy?etzc=P7X9}6LfM56P$x(4!f9WGynCZ&xI-HOo$ zt{$*Pl#_B)Q59u~3l}cbOl9BVhTw@O9(z>?wvJpkG&B;4L=r!-1ar@xJ=;neX{3=x x8fm1FMjC0PkwzM6q>)A%X{3=x8fi=#{sV)oj6a<*5orJb002ovPDHLkV1lUwFPQ)U literal 0 HcmV?d00001 diff --git a/scripts/WixBuildInstaller.cmd b/scripts/WixBuildInstaller.cmd new file mode 100644 index 00000000..d39a2469 --- /dev/null +++ b/scripts/WixBuildInstaller.cmd @@ -0,0 +1,94 @@ +@echo off +setlocal + +REM Azure AI CLI package version (e.g. 1.0.0 or 1.0.0-preview-20231214.1) +if "%~1"=="" ( + echo Error: Azure AI CLI package version is not set. 1>&2 + exit /b 1 +) + +REM Azure AI CLI product version x.y.z (e.g. 1.0.0), ref. https://learn.microsoft.com/windows/win32/msi/productversion +REM This is the version shown in the list of installed programs. +REM If the package version changes but product version remains the same, +REM an existing installation cannot be upgraded without uninstalling it first! +if "%~2"=="" ( + echo Error: Azure AI CLI product version is not set. 1>&2 + exit /b 2 +) + +set PACKAGE_VERSION=%~1 +set PRODUCT_VERSION=%~2 +set TARGET_PLATFORM=x64 +set INSTALLER_FILE=Setup-%TARGET_PLATFORM%.exe +set PACKAGE_URL=https://csspeechstorage.blob.core.windows.net/drop/private/ai/Azure.AI.CLI.%PACKAGE_VERSION%.nupkg + +REM Dependencies +set AZURE_CLI_VERSION=2.57.0 +set AZURE_CLI_INSTALLER=azure-cli-%AZURE_CLI_VERSION%-%TARGET_PLATFORM%.msi +set AZURE_CLI_URL=https://azcliprod.blob.core.windows.net/msi/%AZURE_CLI_INSTALLER% +set DOTNET_VERSION=8.0.101 +set DOTNET_INSTALLER=dotnet-sdk-%DOTNET_VERSION%-win-%TARGET_PLATFORM%.exe +set DOTNET_URL=https://dotnetcli.azureedge.net/dotnet/Sdk/%DOTNET_VERSION%/%DOTNET_INSTALLER% + +REM Check for WiX toolset +where candle.exe >nul 2>&1 +if %ERRORLEVEL% neq 0 set PATH=%PATH%;C:\Program Files (x86)\WiX Toolset v3.11\bin;C:\Program Files (x86)\WiX Toolset v3.14\bin +where candle.exe >nul 2>&1 +if %ERRORLEVEL% neq 0 ( + echo Error: Install WiX v3.14 Toolset from https://wixtoolset.org/docs/v3/releases/v3-14-0-6526/ 1>&2 + exit /b 3 +) + +REM Check for curl.exe (https://techcommunity.microsoft.com/t5/containers/tar-and-curl-come-to-windows/ba-p/382409) +where curl.exe >nul 2>&1 +if %ERRORLEVEL% neq 0 ( + echo Error: curl.exe not found 1>&2 + exit /b 4 +) + +REM Download Azure CLI installer +curl.exe --output %AZURE_CLI_INSTALLER% --silent --url %AZURE_CLI_URL% +if %ERRORLEVEL% neq 0 ( + echo Error while downloading Azure CLI installer 1>&2 + exit /b 5 +) + +REM Download .NET SDK installer +curl.exe --output %DOTNET_INSTALLER% --silent --url %DOTNET_URL% +if %ERRORLEVEL% neq 0 ( + echo Error while downloading .NET SDK installer 1>&2 + exit /b 6 +) + +REM Build AI CLI installer .msi +candle.exe Azure-AI-CLI.wxs -dproductVersion=%PRODUCT_VERSION% -dpackageVersion=%PACKAGE_VERSION% -dpackageUrl=%PACKAGE_URL% -dtargetPlatform=%TARGET_PLATFORM% +if %ERRORLEVEL% neq 0 ( + echo Error from candle.exe 1>&2 + exit /b 7 +) + +light.exe Azure-AI-CLI.wixobj -ext WixUIExtension -ext WixUtilExtension +if %ERRORLEVEL% neq 0 ( + echo Error from light.exe 1>&2 + exit /b 8 +) + +REM Build installation bundle .exe +candle.exe Azure-AI-CLI-Bundle.wxs -ext WixBalExtension -ext WixUtilExtension ^ + -dproductVersion=%PRODUCT_VERSION% -dtargetPlatform=%TARGET_PLATFORM% ^ + -dazureCliVersion=%AZURE_CLI_VERSION% -dazureCliUrl=%AZURE_CLI_URL% ^ + -ddotNetVersion=%DOTNET_VERSION% -ddotNetUrl=%DOTNET_URL% +if %ERRORLEVEL% neq 0 ( + echo Error from candle.exe 1>&2 + exit /b 9 +) + +light.exe Azure-AI-CLI-Bundle.wixobj -ext WixBalExtension -ext WixUtilExtension -out %INSTALLER_FILE% +if %ERRORLEVEL% neq 0 ( + echo Error from light.exe 1>&2 + exit /b 10 +) + +:end +echo Built %INSTALLER_FILE% successfully! +endlocal diff --git a/scripts/WixRunInsignia.cmd b/scripts/WixRunInsignia.cmd new file mode 100644 index 00000000..2b88fe12 --- /dev/null +++ b/scripts/WixRunInsignia.cmd @@ -0,0 +1,73 @@ +@echo off +setlocal + +REM Detach/attach the bundle bootstrap engine so that it can be properly signed together with the bundle exe. +REM ref. https://wixtoolset.org/docs/v3/overview/insignia/ + +if "%~1"=="" ( + echo Error: Action is not specified. 1>&2 + exit /b 1 +) + +if "%~2"=="" ( + echo Error: Target platform is not set. 1>&2 + exit /b 2 +) + +if "%~3"=="" ( + echo Error: Package version is not set. 1>&2 + exit /b 3 +) + +set ACTION=%~1 +set TARGET_PLATFORM=%~2 +set PACKAGE_VERSION=%~3 + +set UNSIGNED_BUNDLE=Setup-%TARGET_PLATFORM%.exe +set BUNDLE_ENGINE=engine-%TARGET_PLATFORM%.exe +set SIGNED_BUNDLE=Azure-AI-CLI-Setup-%PACKAGE_VERSION%-%TARGET_PLATFORM%.exe + +REM Check for WiX toolset. +where insignia.exe >nul 2>&1 +if %ERRORLEVEL% neq 0 set PATH=%PATH%;C:\Program Files (x86)\WiX Toolset v3.11\bin;C:\Program Files (x86)\WiX Toolset v3.14\bin +where insignia.exe >nul 2>&1 +if %ERRORLEVEL% neq 0 ( + echo Error: Install WiX v3.14 Toolset from https://wixtoolset.org/docs/v3/releases/v3-14-0-6526/ 1>&2 + exit /b 4 +) + +if not exist %UNSIGNED_BUNDLE% ( + echo Error: %UNSIGNED_BUNDLE% not found. 1>&2 + exit /b 5 +) + +REM Detach engine from the package bundle installer. +if "%ACTION%"=="detach" ( + insignia -ib %UNSIGNED_BUNDLE% -o %BUNDLE_ENGINE% + if %ERRORLEVEL% neq 0 ( + echo Error from insignia.exe while detaching engine. 1>&2 + exit /b 6 + ) + echo Detached %BUNDLE_ENGINE% from %UNSIGNED_BUNDLE% + goto end +) + +REM engine.exe is expected to be signed between these detach and attach actions. + +REM (Re)attach engine to the package bundle installer. +if "%ACTION%"=="attach" ( + if not exist %BUNDLE_ENGINE% ( + echo Error: %BUNDLE_ENGINE% not found. 1>&2 + exit /b 7 + ) + insignia -ab %BUNDLE_ENGINE% %UNSIGNED_BUNDLE% -o %SIGNED_BUNDLE% + if %ERRORLEVEL% neq 0 ( + echo Error from insignia.exe while attaching engine. 1>&2 + exit /b 8 + ) + echo Attached %BUNDLE_ENGINE% to %SIGNED_BUNDLE% + goto end +) + +:end +endlocal From fffaaf64e63717f0443e859095b79dc1c629eba3 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Mon, 12 Feb 2024 11:46:25 -0800 Subject: [PATCH 03/14] Changed ADO sync to features instead of tasks (#186) * added workflow * changed from tasks to feature --------- Co-authored-by: Chris Schraer --- .github/workflows/sync-to-ado.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync-to-ado.yaml b/.github/workflows/sync-to-ado.yaml index 81e0c649..905945bc 100644 --- a/.github/workflows/sync-to-ado.yaml +++ b/.github/workflows/sync-to-ado.yaml @@ -20,8 +20,8 @@ jobs: ado_project: "Vienna" ado_area_path: "Vienna\\Experiences\\Core SDK\\AI CLI" ado_iteration_path: "Vienna\\Backlog" - ado_wit: "Task" - ado_new_state: "To Do" + ado_wit: "Feature" + ado_new_state: "New" ado_active_state: "Active" ado_close_state: "Done" ado_bypassrules: true From 17fbc9fbf69ec56c10f65df46d4ce6f9dc949d94 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:44:27 -0800 Subject: [PATCH 04/14] changed ADO -> github integration to custom scripts (#189) * added workflow * changed from tasks to feature * changed to custom powershell scripts --------- Co-authored-by: Chris Schraer --- .github/workflows/ado-sync.yaml | 29 ++++++++++++++ .github/workflows/sync-to-ado.yaml | 25 ++++++------ scripts/ADOCheckItemExists.ps1 | 31 +++++++++++++++ scripts/ADOCreateFeature.ps1 | 63 ++++++++++++++++++++++++++++++ scripts/ADOGetADOLinkNumber.ps1 | 13 ++++++ scripts/ADOUpdateFeature.ps1 | 27 +++++++++++++ scripts/GithubUpdateIssue.ps1 | 18 +++++++++ 7 files changed, 192 insertions(+), 14 deletions(-) create mode 100644 .github/workflows/ado-sync.yaml create mode 100644 scripts/ADOCheckItemExists.ps1 create mode 100644 scripts/ADOCreateFeature.ps1 create mode 100644 scripts/ADOGetADOLinkNumber.ps1 create mode 100644 scripts/ADOUpdateFeature.ps1 create mode 100644 scripts/GithubUpdateIssue.ps1 diff --git a/.github/workflows/ado-sync.yaml b/.github/workflows/ado-sync.yaml new file mode 100644 index 00000000..561e6623 --- /dev/null +++ b/.github/workflows/ado-sync.yaml @@ -0,0 +1,29 @@ +name: Create ADO Work Item + +on: + issues: + types: [opened] + +jobs: + create-work-item: + if: ${{ !github.event.issue.pull_request }} + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run PowerShell script + id: create_item + shell: pwsh + run: | + $itemExists = pwsh check-ado-item.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -title "${{ github.event.issue.title }}" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + if ($itemExists -eq $true) { + echo "Work item already exists" + exit 0 + } + $result = pwsh -File ./CreateWorkItem.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + $adoWorkItemLink = pwsh -File ./ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" + if ($adoWorkItemLink -eq 0){ + pwsh -File ./GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.id }} -newDescription "AB#$result" + } diff --git a/.github/workflows/sync-to-ado.yaml b/.github/workflows/sync-to-ado.yaml index 905945bc..1031dd40 100644 --- a/.github/workflows/sync-to-ado.yaml +++ b/.github/workflows/sync-to-ado.yaml @@ -12,17 +12,14 @@ jobs: if: ${{ !github.event.issue.pull_request }} runs-on: ubuntu-latest steps: - - uses: danhellem/github-actions-issue-to-work-item@master - env: - ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" - github_token: "${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}" - ado_organization: "msdata" - ado_project: "Vienna" - ado_area_path: "Vienna\\Experiences\\Core SDK\\AI CLI" - ado_iteration_path: "Vienna\\Backlog" - ado_wit: "Feature" - ado_new_state: "New" - ado_active_state: "Active" - ado_close_state: "Done" - ado_bypassrules: true - log_level: 100 \ No newline at end of file + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run PowerShell script + id: update_ADO_work_feature + shell: pwsh + run: | + $adoWorkItemLink = pwsh -File ./ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" + if ($adoWorkItemLink -eq 0){ + pwsh -File .\ADOUpdateFeature.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -workItemId "$adoWorkItemLink" -newState "${{ github.event.issue.state }}" + } diff --git a/scripts/ADOCheckItemExists.ps1 b/scripts/ADOCheckItemExists.ps1 new file mode 100644 index 00000000..a4a50256 --- /dev/null +++ b/scripts/ADOCheckItemExists.ps1 @@ -0,0 +1,31 @@ +# check-ado-item.ps1 + +param( + [string]$organization, + [string]$project, + [string]$pat, + [string]$title, + [string]$areaPath +) + +$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($pat)")) +$headers = @{Authorization=("Basic {0}" -f $base64AuthInfo)} + +$query = @" +SELECT [System.Id] +FROM workitems +WHERE [System.Title] = '$title' +AND [System.AreaPath] = '$areaPath' +"@ + +$body = @{ + query = $query +} | ConvertTo-Json + +$response = Invoke-RestMethod -Uri "https://dev.azure.com/$organization/$project/_apis/wit/wiql?api-version=6.0" -Method Post -Body $body -ContentType "application/json" -Headers $headers + +if ($response.workItems.Count -gt 0) { + $true +} else { + $false +} diff --git a/scripts/ADOCreateFeature.ps1 b/scripts/ADOCreateFeature.ps1 new file mode 100644 index 00000000..fb6e8f45 --- /dev/null +++ b/scripts/ADOCreateFeature.ps1 @@ -0,0 +1,63 @@ +# Define the organization, project, and personal access token +param ( + [Parameter(Mandatory=$true)] + [string]$pat, + [Parameter(Mandatory=$true)] + [string]$title, + [Parameter(Mandatory=$true)] + [string]$description, + [Parameter(Mandatory=$true)] + [string]$organization, + [Parameter(Mandatory=$true)] + [string]$project, + [Parameter(Mandatory=$true)] + [string]$workItemType, + [Parameter(Mandatory=$true)] + [string]$iterationPath, + [Parameter(Mandatory=$true)] + [string]$areaPath +) + +# Define the URL for the REST API call +$url = "https://dev.azure.com/$organization/$project/_apis/wit/workitems/`$$workItemType?api-version=6.0" + +# Define the body of the REST API call +$body = @" +[ + { + "op": "add", + "path": "/fields/System.Title", + "value": "$title" + }, + { + "op": "add", + "path": "/fields/System.Description", + "value": "$description" + }, + { + "op": "add", + "path": "/fields/System.IterationPath", + "value": "$iterationPath" + }, + { + "op": "add", + "path": "/fields/System.AreaPath", + "value": "$areaPath" + } +] +"@ + +# Convert the body to JSON +$bodyJson = $body | ConvertTo-Json + +# Define the headers for the REST API call +$headers = @{ + "Content-Type" = "application/json-patch+json" + "Authorization" = "Bearer $pat" +} + +# Make the REST API call to create the work item +$response = Invoke-RestMethod -Uri $url -Method Post -Body $bodyJson -Headers $headers + +# Output the ID of the new work item +Write-Output "New work item ID: $($response.id)" diff --git a/scripts/ADOGetADOLinkNumber.ps1 b/scripts/ADOGetADOLinkNumber.ps1 new file mode 100644 index 00000000..14e92329 --- /dev/null +++ b/scripts/ADOGetADOLinkNumber.ps1 @@ -0,0 +1,13 @@ +param( + [string]$inputString +) + +$pattern = "AB#(\d+)" + +if ($inputString -match $pattern) { + $number = $Matches[1] +} else { + $number = 0 +} + +$number \ No newline at end of file diff --git a/scripts/ADOUpdateFeature.ps1 b/scripts/ADOUpdateFeature.ps1 new file mode 100644 index 00000000..ebcfd281 --- /dev/null +++ b/scripts/ADOUpdateFeature.ps1 @@ -0,0 +1,27 @@ +param( + [string]$organization, + [string]$project, + [string]$pat, + [string]$workItemId, + [string]$newState +) + +# Map the GitHub issue state to an ADO work item state +$adoState = if ($githubIssue.state -eq "open") { "New" } +elseif ($githubIssue.state -eq "closed") { "Done" } +else { + Write-Host "Unknown GitHub issue state: $($githubIssue.state)" + exit 0 +} + +$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($pat)")) +$headers = @{Authorization=("Basic {0}" -f $base64AuthInfo)} + +$body = @{ + id = $adoWorkItemId + fields = @{ + "System.State" = $adoState + } +} | ConvertTo-Json + +Invoke-RestMethod -Uri "https://dev.azure.com/$organization/$project/_apis/wit/workitems/$workItemId?api-version=6.0" -Method Patch -Body $body -ContentType "application/json-patch+json" -Headers $adoHeaders diff --git a/scripts/GithubUpdateIssue.ps1 b/scripts/GithubUpdateIssue.ps1 new file mode 100644 index 00000000..b39ae4b0 --- /dev/null +++ b/scripts/GithubUpdateIssue.ps1 @@ -0,0 +1,18 @@ +param( + [string]$token, + [string]$owner, + [string]$repo, + [int]$issueNumber, + [string]$newDescription +) + +$headers = @{ + Authorization = "Bearer $token" + Accept = "application/vnd.github.v3+json" +} + +$body = @{ + body = $newDescription +} | ConvertTo-Json + +Invoke-RestMethod -Uri "https://api.github.com/repos/$owner/$repo/issues/$issueNumber" -Method Patch -Body $body -ContentType "application/json" -Headers $headers \ No newline at end of file From 6452c4a72327f535205f53ce05d1414b54dcfb93 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:48:28 -0800 Subject: [PATCH 05/14] Fixed script paths (#191) Co-authored-by: Chris Schraer --- .github/workflows/ado-sync.yaml | 8 ++++---- .github/workflows/sync-to-ado.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ado-sync.yaml b/.github/workflows/ado-sync.yaml index 561e6623..0f7310f7 100644 --- a/.github/workflows/ado-sync.yaml +++ b/.github/workflows/ado-sync.yaml @@ -17,13 +17,13 @@ jobs: id: create_item shell: pwsh run: | - $itemExists = pwsh check-ado-item.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -title "${{ github.event.issue.title }}" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + $itemExists = pwsh ./scripts/check-ado-item.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -title "${{ github.event.issue.title }}" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" if ($itemExists -eq $true) { echo "Work item already exists" exit 0 } - $result = pwsh -File ./CreateWorkItem.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" - $adoWorkItemLink = pwsh -File ./ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" + $result = pwsh -File ./scripts/CreateWorkItem.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + $adoWorkItemLink = pwsh -File ./scripts/ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" if ($adoWorkItemLink -eq 0){ - pwsh -File ./GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.id }} -newDescription "AB#$result" + pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.id }} -newDescription "AB#$result" } diff --git a/.github/workflows/sync-to-ado.yaml b/.github/workflows/sync-to-ado.yaml index 1031dd40..af30c415 100644 --- a/.github/workflows/sync-to-ado.yaml +++ b/.github/workflows/sync-to-ado.yaml @@ -19,7 +19,7 @@ jobs: id: update_ADO_work_feature shell: pwsh run: | - $adoWorkItemLink = pwsh -File ./ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" + $adoWorkItemLink = pwsh -File ./scripts/ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" if ($adoWorkItemLink -eq 0){ - pwsh -File .\ADOUpdateFeature.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -workItemId "$adoWorkItemLink" -newState "${{ github.event.issue.state }}" + pwsh -File ./scripts/ADOUpdateFeature.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -workItemId "$adoWorkItemLink" -newState "${{ github.event.issue.state }}" } From 577360ad5f6ccc65fdc0eefe951ae12eddce991f Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:01:39 -0800 Subject: [PATCH 06/14] fix ado workflows (#193) * Fixed script paths * Fixing ADO script names and issue number --------- Co-authored-by: Chris Schraer --- .github/workflows/ado-sync.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ado-sync.yaml b/.github/workflows/ado-sync.yaml index 0f7310f7..6b538b2f 100644 --- a/.github/workflows/ado-sync.yaml +++ b/.github/workflows/ado-sync.yaml @@ -17,13 +17,13 @@ jobs: id: create_item shell: pwsh run: | - $itemExists = pwsh ./scripts/check-ado-item.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -title "${{ github.event.issue.title }}" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + $itemExists = pwsh ./scripts/ADOCheckItemExists.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -title "${{ github.event.issue.title }}" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" if ($itemExists -eq $true) { echo "Work item already exists" exit 0 } - $result = pwsh -File ./scripts/CreateWorkItem.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + $result = pwsh -File ./scripts/ADOCreateFeature.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" $adoWorkItemLink = pwsh -File ./scripts/ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" if ($adoWorkItemLink -eq 0){ - pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.id }} -newDescription "AB#$result" + pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.number }} -newDescription "AB#$result" } From f1fc5c8213b27ed8fe0f008bc35e80f454e82933 Mon Sep 17 00:00:00 2001 From: Ryan Hurey Date: Mon, 12 Feb 2024 19:17:54 -0800 Subject: [PATCH 07/14] Initial add of recording (#180) * Initial add * README.md and cleanup * README update * PR Feedback --- .azure/pipelines/build.yaml | 152 +- .azure/pipelines/docker_proxy_setup.yaml | 36 + .../nginx-docker-build-and-push.yaml | 115 + .azure/pipelines/test_execute_and_report.yaml | 78 + .azure/pipelines/test_setup.yaml | 75 + ai-cli.sln | 83 + tests/ai_chat_tests.yaml | 82 + tests/recordingadapter/README.md | 102 + .../RecordedTestAdapterTest.runsettings | 7 + .../RecordedTestDiscoverer.cs | 42 + .../recordingadapter/RecordedTestExecutor.cs | 42 + tests/recordingadapter/RecordedTestMode.cs | 17 + .../recordingadapter/RecordedTestObserver.cs | 117 + .../RecordedYamlTestAdapter.cs | 91 + .../RecordedYamlTestAdapter.csproj | 20 + .../RecordedYamlTestAdapterCommon.targets | 68 + .../RecordedYamlTestRunnerTriggerAttribute.cs | 21 + tests/recordingadapter/TestProxyClient.cs | 225 + ...Cases.test ai chat built in functions.json | 3372 ++ ....ai_chat_tests.TestCases.test ai chat.json | 173 + ...ests.ai init.TestCases.ai init openai.json | 42684 ++++++++++++++++ ...ests.ai init.TestCases.ai init speech.json | 42115 +++++++++++++++ tests/recordproxy/Dockerfile | 2 + tests/recordproxy/Dockerfile.base | 90 + tests/recordproxy/dev_insall.cmd | 5 + tests/recordproxy/headers.lua | 59 + tests/recordproxy/issue_cert.sh | 53 + tests/recordproxy/nginx.conf | 161 + tests/recordproxy/openssl-ca.conf | 32 + tests/recordproxy/storage.lua | 71 + tests/testframework/YamlTagHelpers.cs | 21 +- tests/testframework/YamlTestCaseParser.cs | 2 +- .../testrunner/Properties/launchSettings.json | 8 + 33 files changed, 90085 insertions(+), 136 deletions(-) create mode 100644 .azure/pipelines/docker_proxy_setup.yaml create mode 100644 .azure/pipelines/nginx-docker-build-and-push.yaml create mode 100644 .azure/pipelines/test_execute_and_report.yaml create mode 100644 .azure/pipelines/test_setup.yaml create mode 100644 tests/ai_chat_tests.yaml create mode 100644 tests/recordingadapter/README.md create mode 100644 tests/recordingadapter/RecordedTestAdapterTest.runsettings create mode 100644 tests/recordingadapter/RecordedTestDiscoverer.cs create mode 100644 tests/recordingadapter/RecordedTestExecutor.cs create mode 100644 tests/recordingadapter/RecordedTestMode.cs create mode 100644 tests/recordingadapter/RecordedTestObserver.cs create mode 100644 tests/recordingadapter/RecordedYamlTestAdapter.cs create mode 100644 tests/recordingadapter/RecordedYamlTestAdapter.csproj create mode 100644 tests/recordingadapter/RecordedYamlTestAdapterCommon.targets create mode 100644 tests/recordingadapter/RecordedYamlTestRunnerTriggerAttribute.cs create mode 100644 tests/recordingadapter/TestProxyClient.cs create mode 100644 tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat built in functions.json create mode 100644 tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat.json create mode 100644 tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init openai.json create mode 100644 tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init speech.json create mode 100644 tests/recordproxy/Dockerfile create mode 100644 tests/recordproxy/Dockerfile.base create mode 100644 tests/recordproxy/dev_insall.cmd create mode 100644 tests/recordproxy/headers.lua create mode 100644 tests/recordproxy/issue_cert.sh create mode 100644 tests/recordproxy/nginx.conf create mode 100644 tests/recordproxy/openssl-ca.conf create mode 100644 tests/recordproxy/storage.lua create mode 100644 tests/testrunner/Properties/launchSettings.json diff --git a/.azure/pipelines/build.yaml b/.azure/pipelines/build.yaml index c0ec111d..300aef9d 100644 --- a/.azure/pipelines/build.yaml +++ b/.azure/pipelines/build.yaml @@ -262,144 +262,34 @@ stages: TestFilter: 'cli=ai&tag!=skip' TestResultsPath: '$(Build.SourcesDirectory)/testresults' TestRunTitle: 'Azure AI CLI $(AICLIVersion) ($(BuildConfiguration)-$(Build.BuildNumber))' - TestRunTrxFileName: '$(TestResultsPath)/ai-cli-test-results-$(BuildConfiguration)-$(Build.BuildNumber).trx' + TestRunTrxFileName: '$(TestResultsPath)/ai-cli-test-results-$(BuildConfiguration)-$(Build.BuildNumber)' TestBackupArtifactFile: '$(Build.ArtifactStagingDirectory)/ai-cli-test-run-backup-artifact-$(BuildConfiguration)-$(Build.BuildNumber).zip' jobs: - job: TestJob steps: + - template: test_setup.yaml + - template: docker_proxy_setup.yaml - # ----------------------------------------------------------------------------- - # Download the ai CLI artifacts - # ----------------------------------------------------------------------------- - - task: DownloadPipelineArtifact@2 - displayName: Download ai-cli-artifacts - inputs: - artifact: 'ai-cli-artifacts' - targetPath: '$(Build.ArtifactStagingDirectory)/ai-cli-artifacts' - - task: CopyFiles@2 - displayName: Copy downloaded ai-cli-artifacts - inputs: - Contents: '**/*' - SourceFolder: $(Build.ArtifactStagingDirectory)/ai-cli-artifacts - TargetFolder: $(TargetFolder) - FlattenFolders: true - - task: Bash@3 - displayName: List files... - inputs: - targetType: 'inline' - script: | - echo listing for $(System.DefaultWorkingDirectory) - ls -la $(System.DefaultWorkingDirectory) - echo listing for $(Build.ArtifactStagingDirectory) - ls -la $(Build.ArtifactStagingDirectory) - - # ----------------------------------------------------------------------------- - # Install the ai CLI - # ----------------------------------------------------------------------------- - - task: DotNetCoreCLI@2 - displayName: INSTALL AI - Installing ai CLI via `dotnet tool install` - inputs: - includeNuGetOrg: false - command: custom - custom: tool - version: '8.0.x' - arguments: install - --ignore-failed-sources - --add-source "$(System.DefaultWorkingDirectory)" - --global Azure.AI.CLI - --version "$(AICLIVersion)" - - # ----------------------------------------------------------------------------- - # Finish job prep (mkdir, config cli) - # ----------------------------------------------------------------------------- - - bash: | - env | sort - which dotnet - dotnet --version - echo "TestResultsPath: $(TestResultsPath)" - mkdir $(TestResultsPath) - echo "LocalInputPath: $(LocalInputPath)" - ls -la $(LocalInputPath) - ai config system --set input.path $(LocalInputPath) - ai config --find - echo "DefaultWorkingDirectory: $(System.DefaultWorkingDirectory)" - ls -la $(System.DefaultWorkingDirectory) - displayName: Finish job prep (mkdir, config cli) - workingDirectory: '$(System.DefaultWorkingDirectory)' - - # ----------------------------------------------------------------------------- - # Build the YamlTestAdapter - # ----------------------------------------------------------------------------- - - task: DotNetCoreCLI@2 - displayName: Build YamlTestAdapter - inputs: - includeNuGetOrg: false - command: build - version: '8.0.x' - projects: '**/testadapter/YamlTestAdapter.csproj' - arguments: - -c $(BuildConfiguration) - /p:Platform=x64 - /p:LocalBinOutputPath="$(LocalBinOutputPath)" - - # ----------------------------------------------------------------------------- - # Run the tests - # ----------------------------------------------------------------------------- - - task: AzureCLI@2 - displayName: Run ai-cli tests - continueOnError: true - inputs: - azureSubscription: 'AI_CLI_TestAdapter' - scriptType: 'bash' - scriptLocation: 'inlineScript' - inlineScript: | - az --version - az account show - cd $(TestResultsPath) - echo dotnet test --logger trx --results-directory "$(Agent.TempDirectory)" --logger:"trx;LogFileName=$(TestRunTrxFileName)" --logger:"console;verbosity=normal" --filter "$(TestFilter)" "$(LocalBinOutputPath)/$(BuildConfiguration)/net8.0/Azure.AI.CLI.TestAdapter.dll" - dotnet test --logger trx --results-directory "$(Agent.TempDirectory)" --logger:"trx;LogFileName=$(TestRunTrxFileName)" --logger:"console;verbosity=normal" --filter "$(TestFilter)" "$(LocalBinOutputPath)/$(BuildConfiguration)/net8.0/Azure.AI.CLI.TestAdapter.dll" - - # ----------------------------------------------------------------------------- - # Archive and publish the test run backup artifact - # ----------------------------------------------------------------------------- - - task: ArchiveFiles@2 - displayName: Archive ai-cli-test run backup artifact (build/bin) - continueOnError: true - inputs: - rootFolderOrFile: '$(LocalBinOutputPath)' - includeRootFolder: false - archiveFile: '$(TestBackupArtifactFile)' - replaceExistingArchive: false + - template: test_execute_and_report.yaml + parameters: + test_adapter_name: Azure.AI.CLI.RecordedTestAdapter + TestFilter: $(TestFilter) + envToSet: 'TEST_MODE=Playback;REQUESTS_CA_BUNDLE=/ca/ca.crt' - - task: ArchiveFiles@2 - displayName: Archive ai-cli-test run backup artifact (testresults) - continueOnError: true - inputs: - rootFolderOrFile: '$(TestResultsPath)' - includeRootFolder: false - archiveFile: '$(TestBackupArtifactFile)' - replaceExistingArchive: false - - - task: PublishBuildArtifacts@1 - displayName: Publish ai-cli-test run backup artifact - continueOnError: true - retryCountOnTaskFailure: 5 - inputs: - parallel: true - pathToPublish: '$(TestBackupArtifactFile)' - artifactName: TestRunBackup - - # ----------------------------------------------------------------------------- - # Publish the test results - # ----------------------------------------------------------------------------- - - task: PublishTestResults@2 - displayName: Publish ai-cli test results - inputs: - testRunner: VSTest - testResultsFiles: '$(TestRunTrxFileName)' - testRunTitle: '$(TestRunTitle)' - failTaskOnFailedTests: true + - script: | + docker logs nginx + docker stop nginx + docker rm nginx + docker logs test-proxy + docker stop test-proxy + docker rm test-proxy + displayName: Stop nginx-recording-test-proxy locally + - template: test_execute_and_report.yaml + parameters: + test_adapter_name: Azure.AI.CLI.TestAdapter + TestFilter: $(TestFilter)&tag!=recordable + - stage: ManualApproval dependsOn: [SetupStage, BuildStage, TestStage] condition: and(succeeded(), or(eq(stageDependencies.SetupStage.outputs['SetupJob.Variables.IsRelease'], 'true'), eq(variables['PublishDevBuild'], 'true'))) diff --git a/.azure/pipelines/docker_proxy_setup.yaml b/.azure/pipelines/docker_proxy_setup.yaml new file mode 100644 index 00000000..28656817 --- /dev/null +++ b/.azure/pipelines/docker_proxy_setup.yaml @@ -0,0 +1,36 @@ +steps: + - task: docker@2 + displayName: Login to acrbn acr + inputs: + command: login + containerRegistry: 'acrbn-acr' + - task: docker@2 + displayName: Build nginx-recording-test-proxy locally + inputs: + command: build + repository: nginx-recording-test-proxy-dev + dockerfile: 'tests/recordproxy/Dockerfile' + containerRegistry: 'acrbn-acr' + - bash: | + docker images + host_ip=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+') + echo "Host IP: $host_ip" + HOST_URL="http://$host_ip:5000" + echo "Host URL: $HOST_URL" + + mkdir /logs + docker create -p 5004:5004 --name nginx -v ./logs:/logs -e TEST_PROXY_URL="$HOST_URL" acrbn.azurecr.io/nginx-recording-test-proxy-dev:$(Build.BuildId) + docker start nginx + docker create -p 5001:5001 -p 5000:5000 -v ./tests/recordings:/srv/testproxy --name test-proxy azsdkengsys.azurecr.io/engsys/test-proxy:latest + docker start test-proxy + docker ps + displayName: Run nginx-recording-test-proxy locally + - bash: | + sudo mkdir /ca + sudo chmod 777 /ca + sudo curl -v http://localhost:5004/ca.crt > /ca/ca.crt + sudo mkdir /usr/local/share/ca-certificates/extra + sudo cp /ca/ca.crt /usr/local/share/ca-certificates/extra/ca.crt + sudo dpkg-reconfigure ca-certificates + sudo update-ca-certificates + displayName: Install nginx-recording-test-proxy certificate diff --git a/.azure/pipelines/nginx-docker-build-and-push.yaml b/.azure/pipelines/nginx-docker-build-and-push.yaml new file mode 100644 index 00000000..264269ca --- /dev/null +++ b/.azure/pipelines/nginx-docker-build-and-push.yaml @@ -0,0 +1,115 @@ +# This template common steps for building and pushing of dev-carbon images +# Note that this also makes sure we comply with the SBOM requirements even +# though we likely will never use these images beyond the dev/build environment + +variables: + # The base name of the image + # This also matches the suffix of the Dockerfile - ex Dockerfile.ubuntu + baseName: 'ubuntu' + # The version of the the base-named image + baseVer: '20.04' + # The path of the image (should normally not change) + repositorydocker: nginx-recording-test-proxy + dockerfile: 'tests/recordproxy/Dockerfile.base' + version: $(Build.BuildId) + +trigger: + branches: + include: + - main + - refs/tags/* +pr: + - main + +pool: + name: $(UbuntuPipelineName) + +stages: +- stage: SetupStage + jobs: + - job: SetupJob + steps: + - task: Bash@3 + name: Variables + inputs: + filePath: ./.azure/pipelines/scripts/set-variables.sh + arguments: '0.0.0-dev2024.$(Build.BuildId)' + displayName: 'Set up environment variables' + +- stage: DockerStage + dependsOn: SetupStage + jobs: + - job: DockerJob + + steps: + - task: Docker@2 + displayName: Login to ACR + inputs: + containerRegistry: 'acrbn-acr' + command: 'login' + - task: Docker@2 + displayName: Build ($(dockerfile) - $(version)) + inputs: + command: 'build' + containerRegistry: 'acrbn-acr' + repository: $[variables.repositorydocker] + Dockerfile: $(dockerfile) + buildContext: '.' + + ################################################################################ + ## SBOM + + # So, I have come up with a way to build the SBOM and add it to the image that + # we just built above. It assumes a single tag, but that is just fine as + # we want just a single tag here. + # For the SBOM tool, we need to have a directory to which it writes to + - task: Bash@3 + displayName: 'Make directory for SBOM' + condition: succeeded() + inputs: + targetType: 'inline' + script: | + mkdir -p "$(System.ArtifactsDirectory)/_SBOM" + + # See https://aka.ms/sbom and https://aka.ms/CyberEoM2SBOM + # and specifically https://eng.ms/docs/cloud-ai-platform/devdiv/one-engineering-system-1es/1es-docs/secure-supply-chain/ado-sbom-generator + - task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 + displayName: 'SBOM Generation Task' + condition: succeeded() + # What do we do for this? There is no output directory - it is a container build + inputs: + BuildDropPath: '$(System.ArtifactsDirectory)/_SBOM' + + # Show the contents of the SBOM in the build output logs + - task: Bash@3 + displayName: 'View SBOM' + condition: succeeded() + inputs: + targetType: 'inline' + script: | + echo "Showing the SBOM contents, just because" + for f in $(find "$(System.ArtifactsDirectory)/_SBOM/_manifest" -type f); do + echo + ls -l $f + [[ $f == *.json ]] && sha256sum $f + echo "==== START: $f" + [[ $f == *.json ]] && jq . $f || cat $f + echo + echo "==== END: $f" + echo + done + true + + ## SBOM + ################################################################################ + + - task: Docker@2 + displayName: 'Push ${{ variables.repositorydocker }}' + condition: and(succeeded(), in(variables['Build.Reason'], 'Manual', 'Schedule', 'IndividualCI', 'BatchedCI')) + inputs: + command: 'push' + containerRegistry: 'acrbn-acr' + repository: '$(repositorydocker)' + tags: | + ${{ variables.repositorydocker }} + ${{ variables.repositorydocker }}-$(Build.BuildId) diff --git a/.azure/pipelines/test_execute_and_report.yaml b/.azure/pipelines/test_execute_and_report.yaml new file mode 100644 index 00000000..2247e136 --- /dev/null +++ b/.azure/pipelines/test_execute_and_report.yaml @@ -0,0 +1,78 @@ +parameters: + test_adapter_name: Azure.AI.CLI.TestAdapter + TestFilter: 'TestCategory!=SkipOnVSTS' + envToSet: '' +steps: +# ----------------------------------------------------------------------------- +# Run the tests +# ----------------------------------------------------------------------------- +- task: AzureCLI@2 + displayName: Run ai-cli tests + continueOnError: true + inputs: + azureSubscription: 'AI_CLI_TestAdapter' + scriptType: 'bash' + scriptLocation: 'inlineScript' + inlineScript: | + az --version + az account show + + cd $(TestResultsPath) + IFS=';' read -ra ENV_VARS <<< "${{ parameters.envToSet }}" + for env_var in "${ENV_VARS[@]}"; do + echo "Setting $env_var" + export "$env_var" + done + + echo + echo "Running Docker containers" + docker ps + echo + echo "Current Environment Variables" + env + echo + + echo dotnet test --logger trx --results-directory "$(Agent.TempDirectory)" --logger:"trx;LogFileName=$(TestRunTrxFileName)-${{ parameters.test_adapter_name }}.trx" --logger:"console;verbosity=normal" --filter "${{ parameters.TestFilter }}" "$(LocalBinOutputPath)/$(BuildConfiguration)/net8.0/${{ parameters.test_adapter_name }}.dll" + dotnet test --logger trx --results-directory "$(Agent.TempDirectory)" --logger:"trx;LogFileName=$(TestRunTrxFileName)-${{ parameters.test_adapter_name }}.trx" --logger:"console;verbosity=normal" --filter "${{ parameters.TestFilter }}" "$(LocalBinOutputPath)/$(BuildConfiguration)/net8.0/${{ parameters.test_adapter_name }}.dll" + +# ----------------------------------------------------------------------------- +# Archive and publish the test run backup artifact +# ----------------------------------------------------------------------------- +- task: ArchiveFiles@2 + displayName: Archive ai-cli-test run backup artifact (build/bin) + continueOnError: true + inputs: + rootFolderOrFile: '$(LocalBinOutputPath)' + includeRootFolder: false + archiveFile: '$(TestBackupArtifactFile)' + replaceExistingArchive: false + +- task: ArchiveFiles@2 + displayName: Archive ai-cli-test run backup artifact (testresults) + continueOnError: true + inputs: + rootFolderOrFile: '$(TestResultsPath)' + includeRootFolder: false + archiveFile: '$(TestBackupArtifactFile)' + replaceExistingArchive: false + +- task: PublishBuildArtifacts@1 + displayName: Publish ai-cli-test run backup artifact + continueOnError: true + retryCountOnTaskFailure: 5 + inputs: + parallel: true + pathToPublish: '$(TestBackupArtifactFile)' + artifactName: TestRunBackup + +# ----------------------------------------------------------------------------- +# Publish the test results +# ----------------------------------------------------------------------------- +- task: PublishTestResults@2 + displayName: Publish ai-cli test results + condition: succeededOrFailed() + inputs: + testRunner: VSTest + testResultsFiles: '$(TestRunTrxFileName)-${{ parameters.test_adapter_name }}.trx' + testRunTitle: '$(TestRunTitle)' + failTaskOnFailedTests: true \ No newline at end of file diff --git a/.azure/pipelines/test_setup.yaml b/.azure/pipelines/test_setup.yaml new file mode 100644 index 00000000..6e7645b1 --- /dev/null +++ b/.azure/pipelines/test_setup.yaml @@ -0,0 +1,75 @@ + +steps: +# ----------------------------------------------------------------------------- +# Download the ai CLI artifacts +# ----------------------------------------------------------------------------- +- task: DownloadPipelineArtifact@2 + displayName: Download ai-cli-artifacts + inputs: + artifact: 'ai-cli-artifacts' + targetPath: '$(Build.ArtifactStagingDirectory)/ai-cli-artifacts' +- task: CopyFiles@2 + displayName: Copy downloaded ai-cli-artifacts + inputs: + Contents: '**/*' + SourceFolder: $(Build.ArtifactStagingDirectory)/ai-cli-artifacts + TargetFolder: $(TargetFolder) + FlattenFolders: true +- task: Bash@3 + displayName: List files... + inputs: + targetType: 'inline' + script: | + echo listing for $(System.DefaultWorkingDirectory) + ls -la $(System.DefaultWorkingDirectory) + echo listing for $(Build.ArtifactStagingDirectory) + ls -la $(Build.ArtifactStagingDirectory) + +# ----------------------------------------------------------------------------- +# Install the ai CLI +# ----------------------------------------------------------------------------- +- task: DotNetCoreCLI@2 + displayName: INSTALL AI - Installing ai CLI via `dotnet tool install` + inputs: + includeNuGetOrg: false + command: custom + custom: tool + version: '7.0.x' + arguments: install + --ignore-failed-sources + --add-source "$(System.DefaultWorkingDirectory)" + --global Azure.AI.CLI + --version "$(AICLIVersion)" + +# ----------------------------------------------------------------------------- +# Finish job prep (mkdir, config cli) +# ----------------------------------------------------------------------------- +- bash: | + env | sort + which dotnet + dotnet --version + echo "TestResultsPath: $(TestResultsPath)" + mkdir $(TestResultsPath) + echo "LocalInputPath: $(LocalInputPath)" + ls -la $(LocalInputPath) + ai config system --set input.path $(LocalInputPath) + ai config --find + echo "DefaultWorkingDirectory: $(System.DefaultWorkingDirectory)" + ls -la $(System.DefaultWorkingDirectory) + displayName: Finish job prep (mkdir, config cli) + workingDirectory: '$(System.DefaultWorkingDirectory)' + +# ----------------------------------------------------------------------------- +# Build the YamlTestAdapter +# ----------------------------------------------------------------------------- +- task: DotNetCoreCLI@2 + displayName: Build Test Adapters + inputs: + includeNuGetOrg: false + command: build + version: '7.0.x' + projects: '**/*adapter/*.csproj' + arguments: + -c $(BuildConfiguration) + /p:Platform=x64 + /p:LocalBinOutputPath="$(LocalBinOutputPath)" \ No newline at end of file diff --git a/ai-cli.sln b/ai-cli.sln index 605cfd9c..1c9c096c 100644 --- a/ai-cli.sln +++ b/ai-cli.sln @@ -23,44 +23,126 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YamlTestRunner", "tests\tes EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{C8AFF891-D6AA-4B8F-BC21-10404DF4B355}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RecordedYamlTestAdapter", "tests\recordingadapter\RecordedYamlTestAdapter.csproj", "{9499C018-FA08-4133-93B3-FC0F3863A6CC}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Debug|x64.ActiveCfg = Debug|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Debug|x64.Build.0 = Debug|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Debug|x86.ActiveCfg = Debug|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Debug|x86.Build.0 = Debug|Any CPU {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Release|Any CPU.ActiveCfg = Release|Any CPU {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Release|Any CPU.Build.0 = Release|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Release|x64.ActiveCfg = Release|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Release|x64.Build.0 = Release|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Release|x86.ActiveCfg = Release|Any CPU + {D79D76D8-4E60-46DC-80B6-D5039C5D67F8}.Release|x86.Build.0 = Release|Any CPU {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Debug|x64.ActiveCfg = Debug|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Debug|x64.Build.0 = Debug|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Debug|x86.ActiveCfg = Debug|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Debug|x86.Build.0 = Debug|Any CPU {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Release|Any CPU.ActiveCfg = Release|Any CPU {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Release|Any CPU.Build.0 = Release|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Release|x64.ActiveCfg = Release|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Release|x64.Build.0 = Release|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Release|x86.ActiveCfg = Release|Any CPU + {7639F510-D2CD-491A-BB25-C9D89F3A576A}.Release|x86.Build.0 = Release|Any CPU {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Debug|x64.ActiveCfg = Debug|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Debug|x64.Build.0 = Debug|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Debug|x86.ActiveCfg = Debug|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Debug|x86.Build.0 = Debug|Any CPU {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Release|Any CPU.ActiveCfg = Release|Any CPU {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Release|Any CPU.Build.0 = Release|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Release|x64.ActiveCfg = Release|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Release|x64.Build.0 = Release|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Release|x86.ActiveCfg = Release|Any CPU + {272E0B1B-6C05-428E-BF64-E30B1E5F603A}.Release|x86.Build.0 = Release|Any CPU {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Debug|x64.ActiveCfg = Debug|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Debug|x64.Build.0 = Debug|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Debug|x86.ActiveCfg = Debug|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Debug|x86.Build.0 = Debug|Any CPU {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Release|Any CPU.ActiveCfg = Release|Any CPU {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Release|Any CPU.Build.0 = Release|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Release|x64.ActiveCfg = Release|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Release|x64.Build.0 = Release|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Release|x86.ActiveCfg = Release|Any CPU + {7BD6EF67-BA75-478D-9721-C1B2AB6DE3FF}.Release|x86.Build.0 = Release|Any CPU {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Debug|x64.ActiveCfg = Debug|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Debug|x64.Build.0 = Debug|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Debug|x86.ActiveCfg = Debug|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Debug|x86.Build.0 = Debug|Any CPU {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Release|Any CPU.ActiveCfg = Release|Any CPU {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Release|Any CPU.Build.0 = Release|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Release|x64.ActiveCfg = Release|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Release|x64.Build.0 = Release|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Release|x86.ActiveCfg = Release|Any CPU + {023B4F9C-E2B3-4CCD-A993-87E337C16EDE}.Release|x86.Build.0 = Release|Any CPU {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Debug|x64.ActiveCfg = Debug|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Debug|x64.Build.0 = Debug|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Debug|x86.ActiveCfg = Debug|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Debug|x86.Build.0 = Debug|Any CPU {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Release|Any CPU.ActiveCfg = Release|Any CPU {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Release|Any CPU.Build.0 = Release|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Release|x64.ActiveCfg = Release|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Release|x64.Build.0 = Release|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Release|x86.ActiveCfg = Release|Any CPU + {7C3F1355-B679-487D-904D-7E5FEBA9E75C}.Release|x86.Build.0 = Release|Any CPU {B0B3437F-1828-4A13-866F-1CF7C924015E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B0B3437F-1828-4A13-866F-1CF7C924015E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Debug|x64.ActiveCfg = Debug|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Debug|x64.Build.0 = Debug|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Debug|x86.ActiveCfg = Debug|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Debug|x86.Build.0 = Debug|Any CPU {B0B3437F-1828-4A13-866F-1CF7C924015E}.Release|Any CPU.ActiveCfg = Release|Any CPU {B0B3437F-1828-4A13-866F-1CF7C924015E}.Release|Any CPU.Build.0 = Release|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Release|x64.ActiveCfg = Release|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Release|x64.Build.0 = Release|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Release|x86.ActiveCfg = Release|Any CPU + {B0B3437F-1828-4A13-866F-1CF7C924015E}.Release|x86.Build.0 = Release|Any CPU {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Debug|x64.ActiveCfg = Debug|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Debug|x64.Build.0 = Debug|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Debug|x86.ActiveCfg = Debug|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Debug|x86.Build.0 = Debug|Any CPU {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Release|Any CPU.ActiveCfg = Release|Any CPU {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Release|Any CPU.Build.0 = Release|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Release|x64.ActiveCfg = Release|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Release|x64.Build.0 = Release|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Release|x86.ActiveCfg = Release|Any CPU + {39876475-2D98-40CF-8B08-CD423A5EB4E8}.Release|x86.Build.0 = Release|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Debug|x64.ActiveCfg = Debug|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Debug|x64.Build.0 = Debug|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Debug|x86.ActiveCfg = Debug|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Debug|x86.Build.0 = Debug|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Release|Any CPU.Build.0 = Release|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Release|x64.ActiveCfg = Release|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Release|x64.Build.0 = Release|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Release|x86.ActiveCfg = Release|Any CPU + {9499C018-FA08-4133-93B3-FC0F3863A6CC}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -72,6 +154,7 @@ Global {7C3F1355-B679-487D-904D-7E5FEBA9E75C} = {C8AFF891-D6AA-4B8F-BC21-10404DF4B355} {B0B3437F-1828-4A13-866F-1CF7C924015E} = {C8AFF891-D6AA-4B8F-BC21-10404DF4B355} {39876475-2D98-40CF-8B08-CD423A5EB4E8} = {C8AFF891-D6AA-4B8F-BC21-10404DF4B355} + {9499C018-FA08-4133-93B3-FC0F3863A6CC} = {C8AFF891-D6AA-4B8F-BC21-10404DF4B355} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {002655B1-E1E1-4F2A-8D53-C9CD55136AE2} diff --git a/tests/ai_chat_tests.yaml b/tests/ai_chat_tests.yaml new file mode 100644 index 00000000..a51c9930 --- /dev/null +++ b/tests/ai_chat_tests.yaml @@ -0,0 +1,82 @@ +- area: ai init + tags: + before: true + recordable: true + _sanitize: + - headers: + - name: api-key + value: 00000000-0000-0000-0000-000000000000 + - name: Set-Cookie + regex: (_gh_sess=.*?;) + value: _gh_ses=GHTOKEN + - uri: + - regex: https://(?[^/]+)/ + value: https://fakeendpoint/ + - body: + - regex: "refresh_token=([^&]+)" + value: "refresh_token=TOKEN" + - regex: "\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Z|a-z]{2,}\\b" + value: "email@domain.com" + - regex: "(\"id_token\":\\s*\")(.*?)(\")" + value: "\"id_token\": \"ID_TOKEN\"" + - regex: "(\"iKey\":\\s*\")(.*?)(\")" + value: "\"iKey\": \"INSTRUMENTATION_KEY\"" + - regex: "(\"(?:key1)\":\\s*\")(.*?)(\")" + value: "\"key1\": \"COGSVCSKey1\"" + - regex: "(\"(?:key2)\":\\s*\")(.*?)(\")" + value: "\"key2\": \"COGSVCSKey2\"" + - regex: "(\"time\":\\s*\")(.*?)(\")" + value: "\"time\": \"TIME\"" + tests: + - name: ai init openai + command: ai init openai + arguments: + subscription: e72e5254-f265-4e95-9bd2-9ee8e7329051 + name: robch-oai-eastus2 + chat-deployment-name: gpt-4-32k-0613 + embeddings-deployment-name: text-embedding-ada-002-2 + evaluation-deployment-name: gpt-4-32k-0613 + interactive: false + - name: ai init speech + command: ai init speech + arguments: + subscription: e72e5254-f265-4e95-9bd2-9ee8e7329051 + name: robch-cranky-red-koala-ais + interactive: false + +- name: test ai chat + command: ai chat --question "Why is the sky blue, what's it called" --index-name @none + expect: Rayleigh + tags: + recordable: true + _sanitize: + - headers: + - name: api-key + value: 00000000-0000-0000-0000-000000000000 + - uri: + - regex: https://(?[^/]+)/ + value: https://fakeendpoint/ + +- name: test ai chat built in functions + command: ai chat --interactive --built-in-functions + tags: + recordable: true + _sanitize: + - headers: + - name: api-key + value: 00000000-0000-0000-0000-000000000000 + - uri: + - regex: https://(?[^/]+)/ + value: https://fakeendpoint/ + - body: + - regex: (?:\\\\|\\){1,2}test\.txt + value: /test.txt + input: | + Create a file named "test.txt" with the following content: "Hello, World!" + What files are in the current directory? + Show me what's in the file "test.txt" + expect: | + assistant-function: CreateFileAndSaveText + assistant-function: FindAllFilesInCurrentDirectory + test.txt + Hello, World! diff --git a/tests/recordingadapter/README.md b/tests/recordingadapter/README.md new file mode 100644 index 00000000..85f1932e --- /dev/null +++ b/tests/recordingadapter/README.md @@ -0,0 +1,102 @@ +# `ai` CLI Yaml Recording Test Adapter + +In addition to the capabilities of the [Yaml Test Adapter](https://github.com/Azure/azure-ai-cli/tree/main/tests/testadapter), this adapter adds in the capability to record ai.exe <-> service traffic and replay it enabling CI/CD testing without service interaction. + +The test yaml format and "how tos" are well covered in the Yaml Test Adapter pages, so you should become familiar with that as a first step. + +## Marking a test as being recordable + +Recordable tests are marked with a tag "Recordable" that should be set to true: +``` +- name: test ai chat + command: ai chat --question "Why is the sky blue, what's it called" --index-name @none + expect: Rayleigh + tags: + recordable: true +``` + +The "Recordable" tag can be applied to a test, area, or class. + +## Recording Tests + +Test recording is done by setting the proxy the ai cli will use to a local nginx container that will route all traffic through the [Azure SDK's test-proxy](https://github.com/Azure/azure-sdk-tools/blob/main/tools/test-proxy/Azure.Sdk.Tools.TestProxy/README.md) and use it to record REST traffic. + +### Setup + +* [Install the Azure SDK Test Proxy](https://github.com/Azure/azure-sdk-tools/blob/main/tools/test-proxy/Azure.Sdk.Tools.TestProxy/README.md#installation) +``` +dotnet tool update azure.sdk.tools.testproxy --global --add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json --version "1.0.0-dev*" --ignore-failed-sources +``` +* Start the SDK Test Proxy + * Point it's storage at your recordings directory. + ``` + test-proxy -l \git\azure-ai-cli\tests\recordings + ``` + +* [Run the script](../recordproxy/dev_insall.cmd) to build the local nginx proxy container. +This will: + * Pull the base nginx container from the acrbn container registry. + * Build a local container and generate new TLS keys for itself. + * Create and start a container instance with the correct port mappings. (5004:5004) + * Install the containers Certificate Authority key in your local trusted root store. This is done because the proxy will need to intercept and decrypt the content before forwarding it on to the service. + +* Start the proxy container +``` +docker start nginx +``` +* Set a TEST_MODE environment variable to "Recording" +``` +set TEST_MODE=Record +``` +If "TEST_MODE" is not set, the test cases will be run against the live services. + +* If the AI feature you're testing will use the az cli, it needs an additional environment variable to accept the proxy certificates: +``` +set REQUESTS_CA_BUNDLE=%TEMP%\ca.crt +``` +(%TEMP%\ca.crt is where the dev_install.cmd script above left a copy of the proxy certificate.) + +### Run the tests you want to record +``` +dotnet test D:\git\azure-ai-cli\tests\recordingadapter\bin\Debug\net8.0\Azure.AI.CLI.RecordedTestAdapter.dll +``` + +### Inspect the results for secrets and other PII +Having recorded all client <-> service traffic means that some secrets, such as keys or tokens, or PII was likely recorded. You must inspect the .json files in the recordings directory to ensure that no inappropriate information is committed to the repository. + +Once you've identified content that should not be committed, you can modify your test case to auto-sanitize the content. + +To do so, add a _sanitize tag to your yaml: + +``` +- name: test ai chat + command: ai chat --question "Why is the sky blue, what's it called" --index-name @none + expect: Rayleigh + tags: + recordable: true + _sanitize: + - headers: + - name: api-key + value: 00000000-0000-0000-0000-000000000000 + - uri: + - regex: https://(?[^/]+)/ + value: https://fakeendpoint/ + - body: + - regex: "\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Z|a-z]{2,}\\b" + value: "email@domain.com" +``` +Supported sanitizers can search: +- The body of a request or response with a regular expression and replace matches with specified static content. +- The URL of the request. +- A header with a given key and an optional regular expression for the value. + +It is *important* to remember that the substituted values must retain any formatting, such as not breaking JSON syntax. + +### Playback +Do the same setup as for recording, but instead of Record, set TEST_MODE to Playback. +``` +set TEST_MODE=Record +``` +### Commit the test case and the test\recordings directory. + +Pretty self-explanatory. :-) \ No newline at end of file diff --git a/tests/recordingadapter/RecordedTestAdapterTest.runsettings b/tests/recordingadapter/RecordedTestAdapterTest.runsettings new file mode 100644 index 00000000..1b85726b --- /dev/null +++ b/tests/recordingadapter/RecordedTestAdapterTest.runsettings @@ -0,0 +1,7 @@ + + + . + + + + \ No newline at end of file diff --git a/tests/recordingadapter/RecordedTestDiscoverer.cs b/tests/recordingadapter/RecordedTestDiscoverer.cs new file mode 100644 index 00000000..24e0e4cd --- /dev/null +++ b/tests/recordingadapter/RecordedTestDiscoverer.cs @@ -0,0 +1,42 @@ +using Microsoft.VisualStudio.TestPlatform.ObjectModel; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using Azure.AI.Details.Common.CLI.TestFramework; + +namespace Azure.AI.Details.Common.CLI.RecordedTestAdapter +{ + [FileExtension(YamlTestFramework.YamlFileExtension)] + [FileExtension(RecordedTestAdapter.DllFileExtension)] + [DefaultExecutorUri(RecordedTestAdapter.Executor)] + public class RecordingDiscoverer : ITestDiscoverer + { + public void DiscoverTests(IEnumerable sources, IDiscoveryContext discoveryContext, IMessageLogger logger, ITestCaseDiscoverySink discoverySink) + { + try + { + Logger.Log(logger); + Logger.Log($"RecordingDiscoverer.DiscoverTests(): ENTER"); + Logger.Log($"RecordingDiscoverer.DiscoverTests(): count={sources.Count()}"); + foreach (var test in RecordedTestAdapter.GetTestsFromFiles(sources)) + { + test.ExecutorUri = new Uri(RecordedTestAdapter.Executor); + discoverySink.SendTestCase(test); + } + Logger.Log($"RecordingDiscoverer.DiscoverTests(): EXIT"); + } + catch (Exception ex) + { + Logger.Log($"EXCEPTION: {ex.Message}\nSTACK: {ex.StackTrace}"); + throw; + } + } + } +} \ No newline at end of file diff --git a/tests/recordingadapter/RecordedTestExecutor.cs b/tests/recordingadapter/RecordedTestExecutor.cs new file mode 100644 index 00000000..a3b10c01 --- /dev/null +++ b/tests/recordingadapter/RecordedTestExecutor.cs @@ -0,0 +1,42 @@ +using Microsoft.VisualStudio.TestPlatform.ObjectModel; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using Azure.AI.Details.Common.CLI.TestFramework; + +namespace Azure.AI.Details.Common.CLI.RecordedTestAdapter +{ + [ExtensionUri(RecordedTestAdapter.Executor)] + public class RecordingExecutor : ITestExecutor + { + public void RunTests(IEnumerable tests, IRunContext runContext, IFrameworkHandle frameworkHandle) + { + Logger.Log(frameworkHandle); + Logger.Log($"RecordingExecutor.RunTests(IEnumerable(): ENTER"); + Logger.Log($"RecordingExecutor.RunTests(IEnumerable(): count={tests.Count()}"); + RecordedTestAdapter.RunTests(tests, runContext, frameworkHandle); + Logger.Log($"RecordingExecutor.RunTests(IEnumerable(): EXIT"); + } + + public void RunTests(IEnumerable sources, IRunContext runContext, IFrameworkHandle frameworkHandle) + { + Logger.Log(frameworkHandle); + Logger.Log($"RecordingExecutor.RunTests(IEnumerable(): ENTER"); + Logger.Log($"RecordingExecutor.RunTests(IEnumerable(): count={sources.Count()}"); + RunTests(RecordedTestAdapter.GetTestsFromFiles(sources), runContext, frameworkHandle); + Logger.Log($"RecordingExecutor.RunTests(IEnumerable(): EXIT"); + } + + public void Cancel() + { + Logger.Log($"RecordingExecutor.Cancel(): ENTER/EXIT"); + } + } +} \ No newline at end of file diff --git a/tests/recordingadapter/RecordedTestMode.cs b/tests/recordingadapter/RecordedTestMode.cs new file mode 100644 index 00000000..e71f015e --- /dev/null +++ b/tests/recordingadapter/RecordedTestMode.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Azure.AI.Details.Common.CLI.TestFramework +{ + public enum RecordedTestMode + { + Live, + Record, + Playback, + // Backcompat with Track 1 + None = Live + } +} diff --git a/tests/recordingadapter/RecordedTestObserver.cs b/tests/recordingadapter/RecordedTestObserver.cs new file mode 100644 index 00000000..421a9300 --- /dev/null +++ b/tests/recordingadapter/RecordedTestObserver.cs @@ -0,0 +1,117 @@ +using Microsoft.VisualStudio.TestPlatform.ObjectModel; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; +using System; +using System.Diagnostics; +using System.Linq; +using System.Text.Json; +using System.Threading.Tasks; +using YamlTestAdapter; + +namespace Azure.AI.Details.Common.CLI.TestFramework +{ + public class RecordedTestObservor : IYamlTestFrameworkHost + { + private readonly IFrameworkHandle _frameworkHandle; + RecordedTestMode _mode; + string _id; + + public RecordedTestObservor(IFrameworkHandle frameworkHandle) + { + _frameworkHandle = frameworkHandle; + var modeAsString = Environment.GetEnvironmentVariable("TEST_MODE"); + if (string.IsNullOrEmpty(modeAsString) || !Enum.TryParse(modeAsString, true, out _mode)) + { + _mode = RecordedTestMode.Live; + } + } + + public void RecordStart(TestCase testCase) + { + _frameworkHandle?.RecordStart(testCase); + + if (_mode != RecordedTestMode.Live) + { + Environment.SetEnvironmentVariable("HTTPS_PROXY", "http://localhost:5004"); + foreach (var trait in testCase.Traits.Where((Trait t) => t.Name.Equals("_sanitize", StringComparison.OrdinalIgnoreCase))) + { + var sanitizeJson = trait.Value; + AddSanitizer(sanitizeJson).Wait(); + } + } + + _id = _mode switch + { + RecordedTestMode.Record => TestProxyClient.StartRecording(testCase.FullyQualifiedName).Result, + RecordedTestMode.Playback => TestProxyClient.StartPlayback(testCase.FullyQualifiedName).Result, + RecordedTestMode.Live => null, + _ => throw new InvalidOperationException("Invalid mode") + }; + } + + private async Task AddSanitizer(string sanitizeJson) + { + var sanitize = JsonDocument.Parse(sanitizeJson); + foreach (var sanitizeLine in sanitize.RootElement.EnumerateArray()) + { + JsonElement currentElement; + + if (sanitizeLine.TryGetProperty("headers", out currentElement)) + { + foreach (var header in currentElement.EnumerateArray()) + { + var value = header.GetProperty("value").GetString(); + var name = header.GetProperty("name").GetString(); + + JsonElement element; + string regex = null; + if (header.TryGetProperty("regex", out element)) + { + regex = element.GetString(); + } + await TestProxyClient.AddHeaderSanitizer(name, regex, value); + } + } + else if (sanitizeLine.TryGetProperty("uri", out currentElement)) + { + foreach (var uri in currentElement.EnumerateArray()) + { + await TestProxyClient.AddUriSinatizer(uri.GetProperty("regex").GetString(), uri.GetProperty("value").GetString()); + } + } + else if (sanitizeLine.TryGetProperty("body", out currentElement)) + { + foreach (var body in currentElement.EnumerateArray()) + { + await TestProxyClient.AddBodySanitizer(body.GetProperty("regex").GetString(), body.GetProperty("value").GetString()); + } + } + } + } + + public void RecordResult(TestResult testResult) + { + _frameworkHandle?.RecordResult(testResult); + } + + public void RecordEnd(TestCase testCase, TestOutcome outcome) + { + _frameworkHandle?.RecordEnd(testCase, outcome); + switch (_mode) + { + case RecordedTestMode.Record: + TestProxyClient.StopRecording(_id).Wait(); + Environment.SetEnvironmentVariable("HTTPS_PROXY", null); + TestProxyClient.ClearSanatizers().Wait(); + break; + case RecordedTestMode.Playback: + TestProxyClient.StopPlayback(_id).Wait(); + Environment.SetEnvironmentVariable("HTTPS_PROXY", null); + TestProxyClient.ClearSanatizers().Wait(); + break; + case RecordedTestMode.Live: + // Live test + break; + } + } + } +} diff --git a/tests/recordingadapter/RecordedYamlTestAdapter.cs b/tests/recordingadapter/RecordedYamlTestAdapter.cs new file mode 100644 index 00000000..bd35e0ce --- /dev/null +++ b/tests/recordingadapter/RecordedYamlTestAdapter.cs @@ -0,0 +1,91 @@ +using Azure.AI.Details.Common.CLI.TestFramework; +using Microsoft.VisualStudio.TestPlatform.ObjectModel; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; + +namespace Azure.AI.Details.Common.CLI.RecordedTestAdapter +{ + public class RecordedTestAdapter + { + public static IEnumerable GetTestsFromFiles(IEnumerable sources) + { + Logger.Log($"RecordedTestAdapter.GetTestsFromFiles(source.Count={sources.Count()})"); + + var tests = new List(); + foreach (var source in sources) + { + Logger.Log($"RecordedTestAdapter.GetTestsFromFiles('{source}')"); + tests.AddRange(GetTestsFromFile(source)); + } + + Logger.Log($"RecordedTestAdapter.GetTestsFromFiles() found count={tests.Count()}"); + return tests; + } + + public static IEnumerable GetTestsFromFile(string source) + { + Logger.Log($"RecordedTestAdapter.GetTestsFromFile('{source}')"); + + var file = new FileInfo(source); + Logger.Log($"RecordedTestAdapter.GetTestsFromFile('{source}'): Extension={file.Extension}"); + + var tests = file.Extension.Trim('.') == YamlTestFramework.YamlFileExtension.Trim('.') + ? YamlTestFramework.GetTestsFromYaml(source, file) + : GetTestsFromRecordedTestAdapterOrReferenceDirectory(source, file); + + var retTests = new List(); + + foreach (var test in tests) + { + if (test.Traits.Any((Trait trait) => trait.Name == "tag" && trait.Value == "recordable" || trait.Name == "recordable" && trait.Value == "true")) + { + retTests.Add(test); + } + } + return retTests; + } + + public static void RunTests(IEnumerable tests, IRunContext runContext, IFrameworkHandle frameworkHandle) + { + var filtered = YamlTestCaseFilter.FilterTestCases(tests, runContext); + foreach (var test in filtered) + { + YamlTestProperties.Set(test, "parallelize", "false"); + } + + YamlTestFramework.RunTests(filtered, new RecordedTestObservor(frameworkHandle)); + } + + #region private methods + + private static IEnumerable GetTestsFromRecordedTestAdapterOrReferenceDirectory(string source, FileInfo file) + { + var sourceOk = + source.Contains("Azure.AI.CLI.RecordedTestAdapter") || + Assembly.LoadFile(source).GetReferencedAssemblies().Count(x => x.Name.Contains("Azure.AI.CLI.RecordedTestAdapter")) > 0; + + // foreach (var a in Assembly.LoadFile(source).GetReferencedAssemblies()) + // { + // Logger.Log($"a.Name={a.Name}"); + // Logger.Log($"a.FullName={a.FullName}"); + // } + + Logger.Log($"RecordedTestAdapter.GetTestsFromRecordedTestAdapterOrReferenceDirectory('{source}'): sourceOk = {sourceOk}"); + + return !sourceOk + ? Enumerable.Empty() + : YamlTestFramework.GetTestsFromDirectory(source, file.Directory); + } + + #endregion + + #region recording adapter registration data + public const string DllFileExtension = ".dll"; + public const string Executor = "executor://ai/cli/RecordedTestAdapter/v1"; + #endregion + } +} \ No newline at end of file diff --git a/tests/recordingadapter/RecordedYamlTestAdapter.csproj b/tests/recordingadapter/RecordedYamlTestAdapter.csproj new file mode 100644 index 00000000..81b2d22e --- /dev/null +++ b/tests/recordingadapter/RecordedYamlTestAdapter.csproj @@ -0,0 +1,20 @@ + + + + net8.0 + + + + + + + + + + + Recordings\%(RecursiveDir)%(Filename)%(Extension) + Never + + + + \ No newline at end of file diff --git a/tests/recordingadapter/RecordedYamlTestAdapterCommon.targets b/tests/recordingadapter/RecordedYamlTestAdapterCommon.targets new file mode 100644 index 00000000..d88398e9 --- /dev/null +++ b/tests/recordingadapter/RecordedYamlTestAdapterCommon.targets @@ -0,0 +1,68 @@ + + + + + net8.0 + Library + Azure.AI.CLI.RecordedTestAdapter + false + + + True + 1.1.0 + + + + $(LocalBuildSDKBinPath) + bin + + + + + + x64 + $(LocalBinOutputPath)\Release\ + + + + + x64 + $(LocalBinOutputPath)\Debug\ + + + + + $(DefineConstants);UNIX + $(LocalBinOutputPath)\ReleaseUnixOS + + + + + $(DefineConstants);UNIX + $(LocalBinOutputPath)\DebugUnixOS + + + + + + 1.0.0 + $(TAAssemblyVersion) + + + + $(TAAssemblyVersion) + $(TAAssemblyVersion) + $(TAAssemblyInformationalVersion) + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/recordingadapter/RecordedYamlTestRunnerTriggerAttribute.cs b/tests/recordingadapter/RecordedYamlTestRunnerTriggerAttribute.cs new file mode 100644 index 00000000..130d7005 --- /dev/null +++ b/tests/recordingadapter/RecordedYamlTestRunnerTriggerAttribute.cs @@ -0,0 +1,21 @@ +using Microsoft.VisualStudio.TestPlatform.ObjectModel; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter; +using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; + +namespace Azure.AI.Details.Common.CLI.RecordedTestAdapter +{ + public class RecordingRunnerTriggerAttribute : Attribute + { + public RecordingRunnerTriggerAttribute() + { + } + } +} \ No newline at end of file diff --git a/tests/recordingadapter/TestProxyClient.cs b/tests/recordingadapter/TestProxyClient.cs new file mode 100644 index 00000000..0229ad63 --- /dev/null +++ b/tests/recordingadapter/TestProxyClient.cs @@ -0,0 +1,225 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Net; +using System.Net.Http; +using System.Diagnostics; +using System.Text.Json.Nodes; +using System.IO; + +namespace YamlTestAdapter +{ + public class TestProxyClient + { + private const string _proxy = "http://localhost:5004"; + + private static readonly HttpClient _httpClient = new HttpClient(new HttpClientHandler() + { + ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => true + }); + + public enum SanatizeLocation + { + Header, + Body, + Uri + } + + /* + private static async Task Record() + { + var recordingId = await StartRecording(); + await SendRequest(recordingId, "record"); + await Task.Delay(TimeSpan.FromSeconds(2)); + await SendRequest(recordingId, "record"); + await StopRecording(recordingId); + } + + private static async Task Playback() + { + var recordingId = await StartPlayback(); + await SendRequest(recordingId, "playback"); + await SendRequest(recordingId, "playback"); + await StopPlayback(recordingId); + } +*/ + + public static Process InvokeProxy() + { + var startInfo = new ProcessStartInfo("test-proxy") + { + UseShellExecute = false, + }; + + var process = Process.Start(startInfo); + + return process; + } + + public static void StopProxy(Process process) + { + process.Kill(); + } + + public static async Task StartPlayback(string recordingFile) + { + Console.WriteLine($"StartPlayback {recordingFile}"); + + var message = new HttpRequestMessage(HttpMethod.Post, _proxy + "/playback/start"); + + var json = "{\"x-recording-file\":\"" + recordingFile + "\"}"; + var content = new System.Net.Http.StringContent(json, Encoding.UTF8, "application/json"); + message.Content = content; + + var response = await _httpClient.SendAsync(message); + if (response.StatusCode != HttpStatusCode.OK) + { + var contentStream = await response.Content.ReadAsStreamAsync(); + using (StreamReader reader = new StreamReader(contentStream)) + { + string responseContent = await reader.ReadToEndAsync(); + throw new Exception($"Failed to start playback {response.StatusCode} {responseContent}"); + } + } + var recordingId = response.Headers.GetValues("x-recording-id").Single(); + Console.WriteLine($" x-recording-id: {recordingId}"); + Console.WriteLine(); + + return recordingId; + } + + public static async Task StopPlayback(string recordingId) + { + Console.WriteLine($"StopPlayback {recordingId}"); + Console.WriteLine(); + + var message = new HttpRequestMessage(HttpMethod.Post, _proxy + "/playback/stop"); + message.Headers.Add("x-recording-id", recordingId); + + var response = await _httpClient.SendAsync(message); + if (response.StatusCode != HttpStatusCode.OK) + { + var contentStream = await response.Content.ReadAsStreamAsync(); + using (StreamReader reader = new StreamReader(contentStream)) + { + string responseContent = await reader.ReadToEndAsync(); + throw new Exception($"Failed to start playback {response.StatusCode} {responseContent}"); + } + } + } + + public static async Task StartRecording(string recordingFile) + { + Console.WriteLine($"StartRecording {recordingFile}"); + + var message = new HttpRequestMessage(HttpMethod.Post, _proxy + "/record/start"); + + var json = "{\"x-recording-file\":\"" + recordingFile + "\"}"; + var content = new System.Net.Http.StringContent(json, Encoding.UTF8, "application/json"); + message.Content = content; + + var response = await _httpClient.SendAsync(message); + if (response.StatusCode != HttpStatusCode.OK) + { + var contentStream = await response.Content.ReadAsStreamAsync(); + using (StreamReader reader = new StreamReader(contentStream)) + { + string responseContent = await reader.ReadToEndAsync(); + throw new Exception($"Failed to start playback {response.StatusCode} {responseContent}"); + } + } + + var recordingId = response.Headers.GetValues("x-recording-id").Single(); + Console.WriteLine($" x-recording-id: {recordingId}"); + Console.WriteLine(); + + return recordingId; + } + + public static async Task StopRecording(string recordingId) + { + Console.WriteLine($"StopRecording {recordingId}"); + Console.WriteLine(); + + var message = new HttpRequestMessage(HttpMethod.Post, _proxy + "/record/stop"); + message.Headers.Add("x-recording-id", recordingId); + message.Headers.Add("x-recording-save", bool.TrueString); + + var response = await _httpClient.SendAsync(message); + if (response.StatusCode != HttpStatusCode.OK) + { + var contentStream = await response.Content.ReadAsStreamAsync(); + using (StreamReader reader = new StreamReader(contentStream)) + { + string responseContent = await reader.ReadToEndAsync(); + throw new Exception($"Failed to start playback {response.StatusCode} {responseContent}"); + } + } + } + + public static Task AddUriSinatizer(string regexToMatch, string replaceValue) => AddSanitizer("UriRegexSanitizer", new JsonObject() { ["value"] = replaceValue, ["regex"] = regexToMatch }); + + public static Task AddHeaderSanitizer(string key, string regex, string value) + { + var sanitizer = new JsonObject() { ["value"] = value, ["key"] = key }; + + if (regex != null) + { + sanitizer["regex"] = regex; + } + + return AddSanitizer("HeaderRegexSanitizer", sanitizer); + } + + + public static Task AddBodySanitizer(string key, string value) => AddSanitizer("BodyRegexSanitizer", new JsonObject() { ["value"] = value, ["regex"] = key }); + + private static async Task AddSanitizer(string headerName, JsonObject json) + { + var url = "/admin/addsanitizer"; + var message = new HttpRequestMessage(HttpMethod.Post, _proxy + url); + message.Headers.Add("x-abstraction-identifier", headerName); + message.Content = new StringContent(json.ToJsonString(), Encoding.UTF8, "application/json"); + var result = await _httpClient.SendAsync(message); + if (result.StatusCode != HttpStatusCode.OK) + { + throw new Exception($"Failed to add sanitizer {result.StatusCode} {result.Content}"); + } + } + + public static async Task ClearSanatizers() + { + var url = "/admin/reset"; + var message = new HttpRequestMessage(HttpMethod.Post, _proxy + url); + var result = await _httpClient.SendAsync(message); + + if (result.StatusCode != HttpStatusCode.OK) + { + throw new Exception("Failed to clear sanitizers"); + } + } + /* + public static async Task SendRequest(string recordingId, string mode) + { + Console.WriteLine("Request"); + + var message = new HttpRequestMessage(HttpMethod.Get, _proxy); + message.Headers.Add("x-recording-id", recordingId); + message.Headers.Add("x-recording-mode", mode); + message.Headers.Add("x-recording-upstream-base-uri", _url); + + var response = await _httpClient.SendAsync(message); + var body = (await response.Content.ReadAsStringAsync()); + + Console.WriteLine("Headers:"); + Console.WriteLine($" Date: {response.Headers.Date.Value.LocalDateTime}"); + Console.WriteLine($"Body: {(body.Replace("\r", string.Empty).Replace("\n", string.Empty).Substring(0, 80))}"); + Console.WriteLine(); + } + } + */ + } + +} \ No newline at end of file diff --git a/tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat built in functions.json b/tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat built in functions.json new file mode 100644 index 00000000..42a8f478 --- /dev/null +++ b/tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat built in functions.json @@ -0,0 +1,3372 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "5611", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "1c8f6538-882e-491c-ab05-9f5f5769d7c2", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "b8db685e-328c-4bf3-805c-8c7718cfcad2", + "azureml-model-session": "d029-20240123045238", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "1c8f6538-882e-491c-ab05-9f5f5769d7c2", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "49", + "x-ratelimit-remaining-tokens": "49984", + "X-Request-ID": "42d832a0-6574-409f-acac-907b7770113b" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022,\u0022function_call\u0022:{\u0022name\u0022:\u0022CreateFileAndSaveText\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022{\\n\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022fileName\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022:\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022 \\\u0022\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022test\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022.txt\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022,\\n\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022text\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022:\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022 \\\u0022\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022Hello\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022,\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022 World\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022!\\\u0022\\n\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022}\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7cvLb9U8kM1AtMCnacQzQoboHc\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700204,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022function_call\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + }, + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "5871", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "4ab00b95-33a2-4106-807d-7818f0f8a8cf", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "CreateFileAndSaveText", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022,\n\u0022text\u0022: \u0022Hello, World!\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "CreateFileAndSaveText", + "content": "True", + "role": "function" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "643b814a-48df-4577-9809-514f79158795", + "azureml-model-session": "d029-20240123045238", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4ab00b95-33a2-4106-807d-7818f0f8a8cf", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "48", + "x-ratelimit-remaining-tokens": "49968", + "X-Request-ID": "ce7af39b-32e4-4c28-9abb-28dda3463237" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022I\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 have\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 successfully\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 created\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 a\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 file\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 named\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 \\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022test\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.txt\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022\\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 with\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 content\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022:\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 \\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022Hello\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 World\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022!\\\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7ezW0CN1loi2QHeEHgMmvKkhx1\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700206,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022stop\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + }, + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "6080", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "4f24f85d-63c3-466f-8a93-e2c8d2f21ca1", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "CreateFileAndSaveText", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022,\n\u0022text\u0022: \u0022Hello, World!\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "CreateFileAndSaveText", + "content": "True", + "role": "function" + }, + { + "content": "I have successfully created a file named \u0022test.txt\u0022 with the content: \u0022Hello, World!\u0022.", + "role": "assistant" + }, + { + "content": "What files are in the current directory?", + "role": "user" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "857c90d0-0ff9-4912-8d96-c912d0b6e545", + "azureml-model-session": "d030-20240123055055", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4f24f85d-63c3-466f-8a93-e2c8d2f21ca1", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "47", + "x-ratelimit-remaining-tokens": "49952", + "X-Request-ID": "cf7f314a-60c3-4e77-920d-4188d2671610" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7feDnoDe2GVIUMVFv0KEUxSO2U\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700207,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022,\u0022function_call\u0022:{\u0022name\u0022:\u0022FindAllFilesInCurrentDirectory\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7feDnoDe2GVIUMVFv0KEUxSO2U\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700207,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022{}\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7feDnoDe2GVIUMVFv0KEUxSO2U\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700207,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022function_call\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + }, + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "6272", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "4c127a58-999b-4025-b339-2a42ba28d5d5", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "CreateFileAndSaveText", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022,\n\u0022text\u0022: \u0022Hello, World!\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "CreateFileAndSaveText", + "content": "True", + "role": "function" + }, + { + "content": "I have successfully created a file named \u0022test.txt\u0022 with the content: \u0022Hello, World!\u0022.", + "role": "assistant" + }, + { + "content": "What files are in the current directory?", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "FindAllFilesInCurrentDirectory", + "arguments": "{}" + }, + "role": "assistant" + }, + { + "name": "FindAllFilesInCurrentDirectory", + "content": "./test.txt", + "role": "function" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "0afb79f5-cc14-4040-bc35-4bd88714c0ba", + "azureml-model-session": "d026-20240123015022", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "4c127a58-999b-4025-b339-2a42ba28d5d5", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "46", + "x-ratelimit-remaining-tokens": "49936", + "X-Request-ID": "1c14ef2a-eed9-4f11-b103-45c9cac6551d" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022The\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 current\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 directory\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 contains\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 following\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 file\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022:\\n\\n\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022-\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 test\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.txt\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7gr3Uj6kK8Ku04UpWuooGWuvgq\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700208,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022stop\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + }, + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "6451", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "0976aee5-4a3c-4bd0-b18e-ba7a0654f599", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "CreateFileAndSaveText", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022,\n\u0022text\u0022: \u0022Hello, World!\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "CreateFileAndSaveText", + "content": "True", + "role": "function" + }, + { + "content": "I have successfully created a file named \u0022test.txt\u0022 with the content: \u0022Hello, World!\u0022.", + "role": "assistant" + }, + { + "content": "What files are in the current directory?", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "FindAllFilesInCurrentDirectory", + "arguments": "{}" + }, + "role": "assistant" + }, + { + "name": "FindAllFilesInCurrentDirectory", + "content": "./test.txt", + "role": "function" + }, + { + "content": "The current directory contains the following file:\n\n- test.txt", + "role": "assistant" + }, + { + "content": "Show me what\u0027s in the file \u0022test.txt\u0022", + "role": "user" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "12bc472d-3d78-4027-8c99-ddd1b99407e9", + "azureml-model-session": "d030-20240123055055", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "0976aee5-4a3c-4bd0-b18e-ba7a0654f599", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "45", + "x-ratelimit-remaining-tokens": "49920", + "X-Request-ID": "da56421e-e3bb-4ee7-8b07-59f5fea91cfe" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022,\u0022function_call\u0022:{\u0022name\u0022:\u0022ReadTextFromFile\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022{\\n\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022fileName\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022:\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022 \\\u0022\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022test\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022.txt\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022\\\u0022\\n\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022function_call\u0022:{\u0022arguments\u0022:\u0022}\u0022}},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7heVtrhjleky8wB2ToQqDA0CQ6\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700209,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022function_call\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + }, + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "6664", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "ae086017-8c1a-4c2c-a282-9842542f75f0", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "CreateFileAndSaveText", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022,\n\u0022text\u0022: \u0022Hello, World!\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "CreateFileAndSaveText", + "content": "True", + "role": "function" + }, + { + "content": "I have successfully created a file named \u0022test.txt\u0022 with the content: \u0022Hello, World!\u0022.", + "role": "assistant" + }, + { + "content": "What files are in the current directory?", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "FindAllFilesInCurrentDirectory", + "arguments": "{}" + }, + "role": "assistant" + }, + { + "name": "FindAllFilesInCurrentDirectory", + "content": "./test.txt", + "role": "function" + }, + { + "content": "The current directory contains the following file:\n\n- test.txt", + "role": "assistant" + }, + { + "content": "Show me what\u0027s in the file \u0022test.txt\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "ReadTextFromFile", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "ReadTextFromFile", + "content": "Hello, World!", + "role": "function" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "5aae612f-a2d7-44ba-8a11-56711cea21dd", + "azureml-model-session": "d026-20240123015022", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "ae086017-8c1a-4c2c-a282-9842542f75f0", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "44", + "x-ratelimit-remaining-tokens": "49904", + "X-Request-ID": "dceef7f6-2edb-426e-9000-42069f524faf" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022The\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 content\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 of\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 file\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 \\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022test\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.txt\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022\\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 is\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022:\\n\\n\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022\\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022Hello\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 World\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022!\\\u0022\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7irTTyHsTrK6ysgGp6qcar2pt2\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700210,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022stop\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + }, + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "6810", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "f3a84544-ec93-44f4-86f6-efbca77b825a", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "\u0022Create a file named \u0022test.txt\u0022 with the following content: \u0022Hello, World!\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "CreateFileAndSaveText", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022,\n\u0022text\u0022: \u0022Hello, World!\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "CreateFileAndSaveText", + "content": "True", + "role": "function" + }, + { + "content": "I have successfully created a file named \u0022test.txt\u0022 with the content: \u0022Hello, World!\u0022.", + "role": "assistant" + }, + { + "content": "What files are in the current directory?", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "FindAllFilesInCurrentDirectory", + "arguments": "{}" + }, + "role": "assistant" + }, + { + "name": "FindAllFilesInCurrentDirectory", + "content": "./test.txt", + "role": "function" + }, + { + "content": "The current directory contains the following file:\n\n- test.txt", + "role": "assistant" + }, + { + "content": "Show me what\u0027s in the file \u0022test.txt\u0022", + "role": "user" + }, + { + "content": "", + "function_call": { + "name": "ReadTextFromFile", + "arguments": "{\n\u0022fileName\u0022: \u0022test.txt\u0022\n}" + }, + "role": "assistant" + }, + { + "name": "ReadTextFromFile", + "content": "Hello, World!", + "role": "function" + }, + { + "content": "The content of the file \u0022test.txt\u0022 is:\n\n\u0022Hello, World!\u0022", + "role": "assistant" + }, + { + "content": "\u0022", + "role": "user" + } + ], + "functions": [ + { + "name": "AddFloats", + "description": "Adds two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractFloats", + "description": "Subtracts two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyFloats", + "description": "Multiplies two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideFloats", + "description": "Divides two floats", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "number", + "description": "The a parameter" + }, + "b": { + "type": "number", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "AddIntegers", + "description": "Adds two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "SubtractIntegers", + "description": "Subtracts two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "MultiplyIntegers", + "description": "Multiplies two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "DivideIntegers", + "description": "Divides two integers", + "parameters": { + "type": "object", + "properties": { + "a": { + "type": "integer", + "description": "The a parameter" + }, + "b": { + "type": "integer", + "description": "The b parameter" + } + }, + "required": [ + "a", + "b" + ] + } + }, + { + "name": "Average", + "description": "Calculates the average of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "StandardDeviation", + "description": "Calculates the standard deviation of a list of numbers", + "parameters": { + "type": "object", + "properties": { + "numbers": { + "type": "array", + "items": { + "type": "number" + }, + "description": "The numbers parameter" + } + }, + "required": [ + "numbers" + ] + } + }, + { + "name": "GetCurrentDateTime", + "description": "Gets the current date and time", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FileExists", + "description": "Checks if file exists", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "ReadTextFromFile", + "description": "Reads text from a file; returns empty string if file does not exist", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + } + }, + "required": [ + "fileName" + ] + } + }, + { + "name": "CreateFileAndSaveText", + "description": "Writes text into a file; if the file exists, it is overwritten", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "AppendTextToFile", + "description": "Appends text to a file; if the file does not exist, it is created", + "parameters": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "description": "The fileName parameter" + }, + "text": { + "type": "string", + "description": "The text parameter" + } + }, + "required": [ + "fileName", + "text" + ] + } + }, + { + "name": "DirectoryCreate", + "description": "Creates a directory if it doesn\u0027t already exist", + "parameters": { + "type": "object", + "properties": { + "directoryName": { + "type": "string", + "description": "The directoryName parameter" + } + }, + "required": [ + "directoryName" + ] + } + }, + { + "name": "FindAllFilesInCurrentDirectory", + "description": "List files; lists all files regardless of name; only in current directory", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesRecursively", + "description": "List files; lists all files regardless of name; searches current directory and all sub-directories", + "parameters": { + "type": "object", + "properties": {}, + "required": [] + } + }, + { + "name": "FindAllFilesMatchingPattern", + "description": "List files; lists all files matching pattern; searches current directory, and if pattern includes \u0027**\u0027, all sub-directories", + "parameters": { + "type": "object", + "properties": { + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "pattern" + ] + } + }, + { + "name": "FindTextInAllFiles", + "description": "Find files containing text; searches all files", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + } + }, + "required": [ + "text" + ] + } + }, + { + "name": "FindTextInFilesMatchingPattern", + "description": "Find files containing text; searches files matching a pattern", + "parameters": { + "type": "object", + "properties": { + "text": { + "type": "string", + "description": "The text to find" + }, + "pattern": { + "type": "string", + "description": "The pattern to search for; use \u0027**/*.ext\u0027 to search sub-directories" + } + }, + "required": [ + "text", + "pattern" + ] + } + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "0cac8ba8-1acf-4cfe-a1ec-c31fb783d572", + "azureml-model-session": "d030-20240123055055", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Mon, 12 Feb 2024 01:10:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "f3a84544-ec93-44f4-86f6-efbca77b825a", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "43", + "x-ratelimit-remaining-tokens": "49888", + "X-Request-ID": "1aa76dea-fbe6-4cf4-bd32-509a2739e34a" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022How\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 can\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 I\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 assist\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 you\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 further\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022?\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rF7jXvoPTlkKDmAL0q7Icj9zTxcY\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707700211,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022stop\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + } + ], + "Variables": {} +} diff --git a/tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat.json b/tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat.json new file mode 100644 index 00000000..761716b4 --- /dev/null +++ b/tests/recordings/yaml.ai_chat_tests.TestCases.test ai chat.json @@ -0,0 +1,173 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint/openai/deployments/gpt-4-32k-0613/chat/completions?api-version=2023-12-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "00000000-0000-0000-0000-000000000000", + "Connection": "close", + "Content-Length": "294", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-beta.12 (.NET 8.0.1; Microsoft Windows 10.0.22631)", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "3b21c0c4-786a-4d7b-be1d-5c7645ed1e29", + "x-ms-return-client-request-id": "true", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": { + "messages": [ + { + "content": "You are an AI assistant that helps people find information regarding Azure AI.", + "role": "system" + }, + { + "content": "Why is the sky blue, what\u0027s it called", + "role": "user" + } + ], + "temperature": 0.7, + "presence_penalty": 0, + "frequency_penalty": 0, + "stream": true, + "model": "gpt-4-32k-0613" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "b5889518-27a9-42f6-adc4-3a388b7426e5", + "azureml-model-session": "d027-20240123024829", + "Cache-Control": "must-revalidate, no-cache", + "Connection": "close", + "Content-Type": "text/event-stream", + "Date": "Sun, 11 Feb 2024 22:47:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "3b21c0c4-786a-4d7b-be1d-5c7645ed1e29", + "x-ms-region": "East US 2", + "x-ratelimit-remaining-requests": "49", + "x-ratelimit-remaining-tokens": "49984", + "X-Request-ID": "77d980f5-dd73-48eb-b627-6b6e59e3bf11" + }, + "ResponseBody": [ + "data: {\u0022id\u0022:\u0022\u0022,\u0022object\u0022:\u0022\u0022,\u0022created\u0022:0,\u0022model\u0022:\u0022\u0022,\u0022prompt_filter_results\u0022:[{\u0022prompt_index\u0022:0,\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}],\u0022choices\u0022:[]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022role\u0022:\u0022assistant\u0022},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022The\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 sky\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 appears\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 blue\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 because\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 of\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 a\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 process\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 called\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 Ray\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022leigh\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 scattering\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 As\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 light\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 moves\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 through\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 atmosphere\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 most\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 of\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 longer\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 wavelengths\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 pass\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 straight\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 through\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 Little\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 of\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 red\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 orange\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 and\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 yellow\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 light\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 is\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 affected\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 by\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 air\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 However\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 much\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 of\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 shorter\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 wavelength\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 light\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 is\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 absorbed\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 by\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 gas\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 molecules\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 The\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 absorbed\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 blue\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 light\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 is\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 then\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 radi\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022ated\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 in\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 different\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 directions\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 It\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 gets\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 scattered\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 all\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 around\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 sky\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 Wh\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022ichever\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 direction\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 you\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 look\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 some\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 of\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 this\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 scattered\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 blue\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 light\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 reaches\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 you\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 Since\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 you\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 see\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 blue\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 light\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 from\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 everywhere\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 overhead\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022,\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 the\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 sky\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 looks\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022 blue\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:null,\u0022index\u0022:0,\u0022delta\u0022:{\u0022content\u0022:\u0022.\u0022},\u0022content_filter_results\u0022:{\u0022hate\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022self_harm\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022sexual\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022},\u0022violence\u0022:{\u0022filtered\u0022:false,\u0022severity\u0022:\u0022safe\u0022}}}]}\n\n", + "data: {\u0022id\u0022:\u0022chatcmpl-8rCtBcsyrGLbBiFO4bdA1W8Azo742\u0022,\u0022object\u0022:\u0022chat.completion.chunk\u0022,\u0022created\u0022:1707691621,\u0022model\u0022:\u0022gpt-4-32k\u0022,\u0022choices\u0022:[{\u0022finish_reason\u0022:\u0022stop\u0022,\u0022index\u0022:0,\u0022delta\u0022:{},\u0022content_filter_results\u0022:{}}]}\n\n", + "data: [DONE]\n\n" + ] + } + ], + "Variables": {} +} diff --git a/tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init openai.json b/tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init openai.json new file mode 100644 index 00000000..8b44f2c6 --- /dev/null +++ b/tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init openai.json @@ -0,0 +1,42684 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/providers/Microsoft.CognitiveServices/accounts?api-version=2023-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account list", + "Connection": "close", + "ParameterSetName": "--output --subscription --resource-group --query", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "692db08a-c943-11ee-a5c9-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "769472", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:09:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8563c67b-5d5c-43b1-9b74-0adc433f773a", + "x-ms-original-request-ids": [ + "232f35c1-6681-47b8-bcb5-7bf1340ca68a", + "f25b0776-c12d-4965-95c1-44b22d5e3e50", + "dbbcb839-e75a-4f58-abed-3e7786c294e8", + "e2c66f16-b3ef-4a71-b69d-22f91fd626a7", + "a9a05073-ea0b-416a-a5d0-154e485825b0", + "80bc58fe-d62f-47ec-b31e-b3c902ddb117", + "b6bc4f81-5238-4a5c-9dcc-efc04346bb34", + "725313ff-93fd-4369-9935-3d9d0844da8f", + "dc0b14d9-8959-46b8-8183-d325bb22ccd5", + "95919038-27e8-4772-a7e4-d0f55dfbb8f6", + "273ea288-16d9-4057-a39d-c312d9d878cb", + "60423092-3dbb-4dce-b6e3-18f5c50c7965", + "257201df-92f6-4b4b-9bf2-f7e3c4226c02" + ], + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "8563c67b-5d5c-43b1-9b74-0adc433f773a", + "x-ms-routing-request-id": "WESTUS2:20240212T010948Z:8563c67b-5d5c-43b1-9b74-0adc433f773a", + "X-MSEdge-Ref": "Ref A: 47BD9041BC5D4E569E294D017DFC5DDF Ref B: CO6AA3150218017 Ref C: 2024-02-12T01:09:47Z" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-WestUS-RG/providers/Microsoft.CognitiveServices/accounts/SpeechSDK-AAD-WestUS", + "name": "SpeechSDK-AAD-WestUS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022430128b3-0000-0700-0000-63505b4b0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "8603d33e333a4fff960651edd772a90b", + "dateCreated": "2021-06-16T17:46:04.0616047Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "speechsdk-aad-westus", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Video Translation": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Token": "https://speechsdk-aad-westus.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-16T17:46:03.9951413Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-16T17:46:38.8689499Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-RG/providers/Microsoft.CognitiveServices/accounts/LUIS-Authoring", + "name": "LUIS-Authoring", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224301f1ba-0000-0700-0000-63505b570000\u0022", + "location": "westus", + "sku": { + "name": "F0" + }, + "kind": "LUIS.Authoring", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "77149f4ffec5478593a07ac63328ccaf", + "dateCreated": "2021-06-30T16:03:40.0984036Z", + "callRateLimit": { + "rules": [ + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + } + ], + "endpoints": { + "LUIS.Authoring": "https://westus.api.cognitive.microsoft.com/", + "LUIS": "https://westus.api.cognitive.microsoft.com/", + "Container": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-30T16:03:39.9718634Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-30T16:03:39.9718634Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/speech-sdk-dri-test/providers/Microsoft.CognitiveServices/accounts/speech-sdk-dri-test", + "name": "speech-sdk-dri-test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401c700-0000-0700-0000-63505bcd0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "d75ad1e274924fcd806b6213c69a67ba", + "dateCreated": "2021-10-12T16:26:52.46351Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-10-12T16:26:52.1751637Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-10-12T16:26:52.1751637Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-spx-luis-rg/providers/Microsoft.CognitiveServices/accounts/robch-spx-luis-predict", + "name": "robch-spx-luis-predict", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002244012932-0000-0700-0000-63505c180000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "4531dcdbb01648a495ecb8eef91d1c10", + "dateCreated": "2022-01-11T21:48:35.7005634Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus.api.cognitive.microsoft.com/", + "Container": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-01-11T21:48:35.5789783Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-01-11T21:48:35.5789783Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus-rg-610/providers/Microsoft.CognitiveServices/accounts/robch-init-westus-speech-610-610", + "name": "robch-init-westus-speech-610-610", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401285f-0000-0700-0000-63505c5d0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "8b754dcdbc40453fa5f1118217c42645", + "dateCreated": "2022-03-29T01:10:42.8917698Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-29T01:10:42.7653732Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-29T01:10:42.7653732Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-7163/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-7164", + "name": "robch-init-westus2-7164", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401a561-0000-0700-0000-63505c610000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "7c4ce28abb1a4db283e33bc78334bad5", + "dateCreated": "2022-04-02T02:18:54.391217Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:18:54.2394671Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:18:54.2394671Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-7163/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-71644", + "name": "robch-init-westus2-71644", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401a661-0000-0700-0000-63505c610000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "77adec7e279846458ce021bc321d94fa", + "dateCreated": "2022-04-02T02:20:01.3518061Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:20:01.2173583Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:20:01.2173583Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/Brianem_spx_testing/providers/Microsoft.CognitiveServices/accounts/westus", + "name": "westus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002244018ca5-0000-0700-0000-63505cc70000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "97d6fd0aa2114ef2a0ebf5ae7344e167", + "dateCreated": "2022-07-22T22:49:01.8074853Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-07-22T22:49:01.6805374Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-07-22T22:49:01.6805374Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus-demo-83/providers/Microsoft.CognitiveServices/accounts/robch-westus-vision-83", + "name": "robch-westus-vision-83", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401fcae-0000-0700-0000-63505cd50000\u0022", + "location": "westus", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "a5b8135bdbc94236a9c798d8d5d8cf5d", + "dateCreated": "2022-08-03T16:44:27.033716Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus.api.cognitive.microsoft.com/", + "Container": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-03T16:44:26.862693Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-03T16:44:26.862693Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/CICD_Resources/providers/Microsoft.CognitiveServices/accounts/CICDPredictionResourceAuthoring-Authoring", + "name": "CICDPredictionResourceAuthoring-Authoring", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401bfb0-0000-0700-0000-63505cd70000\u0022", + "location": "westus", + "sku": { + "name": "F0" + }, + "kind": "LUIS.Authoring", + "tags": {}, + "properties": { + "endpoint": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/", + "internalId": "c4b23d09bf2041909e33a2464f016c9d", + "dateCreated": "2022-08-05T15:44:47.736659Z", + "callRateLimit": { + "rules": [ + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cicdpredictionresourceauthoring-authoring", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + } + ], + "endpoints": { + "LUIS.Authoring": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/", + "LUIS": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/", + "Container": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-05T15:44:47.4751368Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-05T15:44:47.4751368Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/Carbon-Unified-Vision-RG/providers/Microsoft.CognitiveServices/accounts/carbon-vision-2", + "name": "carbon-vision-2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227001a3fc-0000-0700-0000-647e1bb40000\u0022", + "location": "westus", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://carbon-vision-2.cognitiveservices.azure.com/", + "internalId": "203d6bc3139843fea24621ae779af734", + "dateCreated": "2023-01-04T15:35:01.8278618Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "carbon-vision-2", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://carbon-vision-2.cognitiveservices.azure.com/", + "Container": "https://carbon-vision-2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-01-04T15:35:01.0040803Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-01-04T15:35:01.0040803Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brianem-funny-pink-orca-rg/providers/Microsoft.CognitiveServices/accounts/brianem-funny-pink-orca-ais", + "name": "brianem-funny-pink-orca-ais", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e603697a-0000-0700-0000-6555168e0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "internalId": "244b15375f714e169fb922301736b1d6", + "dateCreated": "2023-11-15T19:05:43.0381486Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "brianem-funny-pink-orca-ais", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "OpenAI Dall-E API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "OpenAI Whisper API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "OpenAI Model Scaleset API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "Content Safety": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Video Translation": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Token": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-15T19:05:41.6810511Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-15T19:05:41.6810511Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/jhakulin-kind-blue-lynx-rg/providers/Microsoft.CognitiveServices/accounts/jhakulin-kind-blue-lynx-ai-aiservices", + "name": "jhakulin-kind-blue-lynx-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225e0bce35-0000-0700-0000-65734c160000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "internalId": "f338f91f174b489f83aafdf6c18d2a1d", + "dateCreated": "2023-12-08T17:02:06.358564Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-kind-blue-lynx-ai-aiservices1452303482", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "Content Safety": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Token": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7d92a9a4-522d-40c3-a05e-a46541457a65", + "createdByType": "Application", + "createdAt": "2023-12-08T17:02:04.9094496Z", + "lastModifiedBy": "7d92a9a4-522d-40c3-a05e-a46541457a65", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-08T17:02:04.9094496Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/chschraeDev/providers/Microsoft.CognitiveServices/accounts/ai-service-chschrae-westus-001", + "name": "ai-service-chschrae-westus-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228b0b619d-0000-0700-0000-6577977c0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "internalId": "b5bc03c926064740b305be6211b642e7", + "dateCreated": "2023-12-11T23:12:58.9953914Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-service-chschrae-westus-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Spell Check": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Entity Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Image Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing News Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Video Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Web Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Visual Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Custom Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Face": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Computer Vision": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Container": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Text Analytics": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Custom Question Answering": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Language": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "QnAMaker": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Turing": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "QuestionAnswering": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "LUIS": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Unified Speech": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator Client": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "DocumentTranslation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Token": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Video Translation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "FormRecognizer": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T23:12:58.6823174Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T23:12:58.6823174Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/chschraeDev/providers/Microsoft.CognitiveServices/accounts/openai-chschrae-westus-001", + "name": "openai-chschrae-westus-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228b0ba4ba-0000-0700-0000-65779a260000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-chschrae-westus-001.openai.azure.com/", + "internalId": "b1487800ab114673803d59e8375f8f51", + "dateCreated": "2023-12-11T23:14:47.5939236Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-chschrae-westus-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-chschrae-westus-001.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-chschrae-westus-001.openai.azure.com/", + "OpenAI Whisper API": "https://openai-chschrae-westus-001.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-chschrae-westus-001.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T23:14:47.2042573Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T23:14:47.2042573Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-test-azure-ai-westus-aiservices", + "name": "ralphe-test-azure-ai-westus-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022a80b4cb5-0000-0700-0000-659e358b0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "internalId": "aa30c8b643bc4553a1bbcb165cee9e6b", + "dateCreated": "2024-01-10T06:07:50.6782469Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-test-azure-ai-westus-aiservices534256510", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "Content Safety": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Token": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "6547f4a0-edb5-47c5-a209-224f64490619", + "createdByType": "Application", + "createdAt": "2024-01-10T06:07:49.3651025Z", + "lastModifiedBy": "6547f4a0-edb5-47c5-a209-224f64490619", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-10T06:07:49.3651025Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/test/providers/Microsoft.CognitiveServices/accounts/test", + "name": "test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227e017fd4-0000-0700-0000-65b2cb500000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://test.openai.azure.com/", + "provisioningState": "Failed", + "internalId": "bc03e1d379fa4e96be8b60c1fa35a758", + "dateCreated": "2024-01-25T20:57:19.1430948Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "test", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://test.openai.azure.com/", + "OpenAI Dall-E API": "https://test.openai.azure.com/", + "OpenAI Whisper API": "https://test.openai.azure.com/", + "OpenAI Model Scaleset API": "https://test.openai.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-25T20:57:18.9223306Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-25T20:57:18.9223306Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/krpratic-test-embeddings", + "name": "krpratic-test-embeddings", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220b003a24-0000-0700-0000-65c54c650000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://krpratic-test-embeddings.openai.azure.com/", + "internalId": "9ead01f0399c493caf382a8c45a1b5c6", + "dateCreated": "2024-02-08T21:00:48.4003548Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "krpratic-test-embeddings", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://krpratic-test-embeddings.openai.azure.com/", + "OpenAI Dall-E API": "https://krpratic-test-embeddings.openai.azure.com/", + "OpenAI Whisper API": "https://krpratic-test-embeddings.openai.azure.com/", + "OpenAI Model Scaleset API": "https://krpratic-test-embeddings.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-02-08T21:00:47.4468677Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-02-08T21:00:47.4468677Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-speech-westus2", + "name": "rhurey-speech-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800542f-0000-0800-0000-638270fe0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "3ca72bc27d3344c7a87a9a324c340293", + "dateCreated": "2019-10-24T19:48:11.1235345Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-samsung-speech", + "name": "rhurey-samsung-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278005330-0000-0800-0000-638271080000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "78e6c9e5d1fb42e389d5954164d0d324", + "dateCreated": "2019-11-08T02:23:57.3852616Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-rg-uswest2/providers/Microsoft.CognitiveServices/accounts/rhurey-samsung-scale", + "name": "rhurey-samsung-scale", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278004031-0000-0800-0000-638271120000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "413d0c363f954816b67e893cbcc71ae2", + "dateCreated": "2019-11-20T04:47:05.5577525Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-LUIS", + "name": "rhurey-LUIS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278008432-0000-0800-0000-638271210000\u0022", + "location": "westus2", + "sku": { + "name": "F0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "2dc4706bc3844ba1b1ad74bc3b1025d8", + "dateCreated": "2019-12-12T21:10:44.1783195Z", + "callRateLimit": { + "rules": [ + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-rg-uswest2/providers/Microsoft.CognitiveServices/accounts/rhurey-LUIS", + "name": "rhurey-LUIS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278008632-0000-0800-0000-638271210000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b97c7c038508498383aad5bf935eac99", + "dateCreated": "2019-12-12T21:16:09.620435Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-luis-westus2", + "name": "rhurey-luis-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278008f32-0000-0800-0000-638271210000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "6e830296f25149a8877af88f845e2ef8", + "dateCreated": "2019-12-13T01:12:14.0351452Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-AAD-RG/providers/Microsoft.CognitiveServices/accounts/rhurey-AAD", + "name": "rhurey-AAD", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800495e-0000-0800-0000-638273b20000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "d9d1fadf1d1b4bfd9944792556ba1b59", + "dateCreated": "2021-06-11T16:23:21.5918864Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "rhurey-aad-test", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Video Translation": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Token": "https://rhurey-aad-test.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-11T16:23:21.4796795Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-11T16:34:20.4989408Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-rg-tw/providers/Microsoft.CognitiveServices/accounts/rhurey-tw", + "name": "rhurey-tw", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278002f65-0000-0800-0000-6382741d0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "4aa6b8413afa4a578cf58f9b7c26682d", + "dateCreated": "2021-08-22T18:19:29.4900619Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-08-22T18:19:29.4306758Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-08-22T18:19:29.4306758Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision", + "name": "robch-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001c69-0000-0800-0000-6382745a0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://robch-vision.cognitiveservices.azure.com/", + "internalId": "9616f4f8cabe4961911d16eb9e2504d2", + "dateCreated": "2021-10-03T17:16:04.9167117Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-vision", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://robch-vision.cognitiveservices.azure.com/", + "Container": "https://robch-vision.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-10-03T17:16:04.7886425Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-10-03T17:16:04.7886425Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-westus2-speech", + "name": "robch-westus2-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001d80-0000-0800-0000-638275900000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b6ad8a30c35f4c09ad50eaf4891bccdc", + "dateCreated": "2022-03-18T21:03:32.0694205Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-18T21:03:32.018167Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-18T21:03:32.018167Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-2-westus2-speech", + "name": "robch-2-westus2-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001e80-0000-0800-0000-638275900000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "provisioningState": "Succeeded", + "internalId": "ee04283df37b4317a05e2ab4d21456bd", + "dateCreated": "2022-03-18T21:11:50.1994213Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-18T21:11:50.0356746Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-18T21:20:02.8071988Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-2-westus2-vision", + "name": "robch-2-westus2-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001f80-0000-0800-0000-638275900000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b00a629637414fe79f285aef9058919b", + "dateCreated": "2022-03-18T21:27:55.2907845Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-18T21:27:55.1369127Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-18T21:27:55.1369127Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-2-westus2-face", + "name": "robch-2-westus2-face", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278005880-0000-0800-0000-638275930000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "3d643b01d0fa43d68ba5397483f7b120", + "dateCreated": "2022-03-22T00:04:09.5167904Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-22T00:04:09.4636089Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-22T00:04:09.4636089Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-3d-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-3d-westus2-face", + "name": "robch-3d-westus2-face", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278005980-0000-0800-0000-638275940000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "6a9c6180a2fe40509115eaf5fb1ae80d", + "dateCreated": "2022-03-22T00:27:22.6364645Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-22T00:27:22.5486476Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-22T00:27:22.5486476Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/cls", + "name": "cls", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800f780-0000-0800-0000-6382759a0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b30d1168acea49788ffc68e32ce5c958", + "dateCreated": "2022-03-27T19:19:28.2405197Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-27T19:19:28.1317333Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-27T19:19:28.1317333Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-test-demo-1147/providers/Microsoft.CognitiveServices/accounts/robch-init-test-demo-speech-1147", + "name": "robch-init-test-demo-speech-1147", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800b581-0000-0800-0000-638275a10000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "c7cef4a26be147ba9bd7362f0e5d3af6", + "dateCreated": "2022-03-31T18:47:31.756689Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-31T18:47:31.6374805Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-31T18:47:31.6374805Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-543/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-543", + "name": "robch-init-westus2-speech-543", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800c481-0000-0800-0000-638275a20000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "c991127961ab47e18738155f0dcc36a5", + "dateCreated": "2022-04-01T00:44:04.7671025Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-01T00:44:04.623455Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-01T00:44:04.623455Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-549/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-549", + "name": "robch-init-westus2-speech-549", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800cb81-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "3be67bec93014c169ffe879b9cee039a", + "dateCreated": "2022-04-01T12:49:54.3532528Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-01T12:49:54.2312923Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-01T12:49:54.2312923Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-645645/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-645645", + "name": "robch-init-westus2-645645", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800df81-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "7e5d408980234de6aacfd3317663aeba", + "dateCreated": "2022-04-02T01:46:10.6760643Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T01:46:10.6189285Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T01:46:10.6189285Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-645645/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-6456", + "name": "robch-init-westus2-6456", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800e081-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "416f29c183434fc28f9aa1eb31934f93", + "dateCreated": "2022-04-02T02:07:28.7733829Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:07:28.7179272Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:07:28.7179272Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-716/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-716", + "name": "robch-init-westus2-716", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800e281-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "afaae703fdda4bce82f81804cc5535ec", + "dateCreated": "2022-04-02T02:17:34.9216175Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:17:34.7885429Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:17:34.7885429Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1001/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1001", + "name": "robch-init-westus2-speech-1001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ea81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "de4fbb4fde14406db63588396b86e626", + "dateCreated": "2022-04-02T17:02:15.7678658Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:02:15.691606Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:02:15.691606Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1001/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1001a", + "name": "robch-init-westus2-speech-1001a", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800eb81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "6508d050ba9342d686899343e87ed84b", + "dateCreated": "2022-04-02T17:03:40.4691899Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:03:40.3076458Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:03:40.3076458Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1001b/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1001b", + "name": "robch-init-westus2-speech-1001b", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ec81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "362e98c2db9a406f9b6d39e368cf76b6", + "dateCreated": "2022-04-02T17:04:12.4363593Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:04:12.3489134Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:04:12.3489134Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-543/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1011", + "name": "robch-init-westus2-speech-1011", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ed81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "5d11c033630645b5a54520c4021328dd", + "dateCreated": "2022-04-02T17:11:54.1799525Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:11:54.1292502Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:11:54.1292502Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/zzz/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-107", + "name": "robch-init-westus2-107", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278000182-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "cf43f73ac0bf498c87b50006f478604c", + "dateCreated": "2022-04-02T20:07:58.2155541Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T20:07:58.1771535Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T20:07:58.1771535Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-109/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-zzz", + "name": "robch-init-westus2-zzz", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278000282-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "8ba7a4ca50e3498a974a0122b0a132b5", + "dateCreated": "2022-04-02T20:09:28.8973817Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T20:09:28.8192596Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T20:09:28.8192596Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1099/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-zzz", + "name": "robch-init-westus2-zzz", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278000382-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "1d7134affb4442f8aa951a9785163c46", + "dateCreated": "2022-04-02T20:09:57.8560652Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T20:09:57.7745269Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T20:09:57.7745269Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-543/providers/Microsoft.CognitiveServices/accounts/robch-init-unique", + "name": "robch-init-unique", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001182-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "e4b56c03196f44258aa59c8d0bdc9bef", + "dateCreated": "2022-04-03T20:17:33.5303559Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-03T20:17:33.4718559Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-03T20:17:33.4718559Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision-2", + "name": "robch-vision-2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800bc82-0000-0800-0000-638275ad0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "provisioningState": "Succeeded", + "internalId": "d5810cdc48504e6bb08b3095abbc12b3", + "dateCreated": "2022-04-08T02:14:30.5146287Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T02:14:30.4295672Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T02:14:36.4383044Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision-3", + "name": "robch-vision-3", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800bd82-0000-0800-0000-638275ad0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "7cf5e42adbb2420d8e79dfe425925020", + "dateCreated": "2022-04-08T02:40:20.8600056Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T02:40:20.8078914Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T02:40:20.8078914Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-test-demo-1147/providers/Microsoft.CognitiveServices/accounts/robch-init-test-demo-1147-944", + "name": "robch-init-test-demo-1147-944", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ca82-0000-0800-0000-638275ad0000\u0022", + "location": "westus2", + "sku": { + "name": "F0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "898603b8d3ef45fca85fe4362efd3354", + "dateCreated": "2022-04-08T16:44:04.5983145Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T16:44:04.4466229Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T16:44:04.4466229Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/form-reco-1-rg/providers/Microsoft.CognitiveServices/accounts/form-reco-1", + "name": "form-reco-1", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278009c83-0000-0800-0000-638275b60000\u0022", + "location": "WESTUS2", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "8a1daf680a644a08ac289c2d5f6ef095", + "dateCreated": "2022-04-14T16:37:17.174664Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-14T16:37:17.1115861Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-14T16:37:17.1115861Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision-westus2-face-427", + "name": "robch-vision-westus2-face-427", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800fb85-0000-0800-0000-638275cc0000\u0022", + "location": "westus2", + "sku": { + "name": "F0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "efacd8a966094672928f553db906c913", + "dateCreated": "2022-04-27T23:43:39.3036472Z", + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-27T23:43:39.1783182Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-27T23:43:39.1783182Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-349", + "name": "robch-vz-init-test-5-6-349", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006a87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "4f1def61710e4de7b1f13f5e1c746411", + "dateCreated": "2022-05-06T22:49:58.0687382Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T22:49:57.9969896Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T22:49:57.9969896Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-351", + "name": "robch-vz-init-test-5-6-351", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006b87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "0802d02eb14e4bb0bef99c21ea056ae4", + "dateCreated": "2022-05-06T22:51:09.3626984Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T22:51:09.3045285Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T22:51:09.3045285Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-424", + "name": "robch-vz-init-test-5-6-424", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006d87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "5878b1c0674e426494ad4347affd7566", + "dateCreated": "2022-05-06T23:25:09.6095721Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:25:09.5314732Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:25:09.5314732Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-426", + "name": "robch-vz-init-test-5-6-426", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006e87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "provisioningState": "Succeeded", + "internalId": "250d855fd2324b94b877f78fe1fc0ec6", + "dateCreated": "2022-05-06T23:27:07.6308187Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:27:07.5624267Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:27:21.7934065Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-427", + "name": "robch-vz-init-test-5-6-427", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006f87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "f73ce2c399ff423b8247e36528ae5c6d", + "dateCreated": "2022-05-06T23:27:43.4631999Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:27:43.4133208Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:27:43.4133208Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-428", + "name": "robch-vz-init-test-5-6-428", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007087-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "a63d57c7e9c040408bde9e8ddc115bfc", + "dateCreated": "2022-05-06T23:28:55.445756Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:28:55.372692Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:28:55.372692Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-432", + "name": "robch-vz-init-test-5-6-432", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007187-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "2234640f6c7a43419a5a5db509cf943d", + "dateCreated": "2022-05-06T23:32:45.954376Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:32:45.9083729Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:32:45.9083729Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-433", + "name": "robch-vz-init-test-5-6-433", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007287-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "a12fd291e78e4774a208867ca099fe5b", + "dateCreated": "2022-05-06T23:34:16.4140036Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:34:16.2957152Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:34:16.2957152Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-434", + "name": "robch-vz-init-test-5-6-434", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007387-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "af96143b683043e6ba783977b8fdd76b", + "dateCreated": "2022-05-06T23:36:59.6973178Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:36:59.5912446Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:36:59.5912446Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-445", + "name": "robch-vz-init-test-5-6-445", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007487-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b72b0db851da46ab9481b004a59a4376", + "dateCreated": "2022-05-06T23:45:52.1048793Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:45:51.9735217Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:45:51.9735217Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-446", + "name": "robch-vz-init-test-5-6-446", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007587-0000-0800-0000-638275dc0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "12eea5ad8f6448368114e1bf73247fcb", + "dateCreated": "2022-05-06T23:46:50.8753399Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:46:50.8068509Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:46:50.8068509Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brianem-usw2/providers/Microsoft.CognitiveServices/accounts/brianem-speech", + "name": "brianem-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001789-0000-0800-0000-638275ec0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "34ca4887c2a440719e8c20bba915fff4", + "dateCreated": "2022-05-18T22:56:40.5865946Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-18T22:56:40.5258897Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-18T22:56:40.5258897Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-face-rg/providers/Microsoft.CognitiveServices/accounts/rhurey-vision", + "name": "rhurey-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800cf94-0000-0800-0000-638276690000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "629dbf1c1a8d4f638fbb2a98c4072ac3", + "dateCreated": "2022-08-31T18:55:14.4183185Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "customvision.training", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "customvision/v3.0/training/*", + "method": "*" + }, + { + "path": "customvision/v3.1/training/*", + "method": "*" + }, + { + "path": "customvision/v3.2/training/*", + "method": "*" + }, + { + "path": "customvision/v3.3/training/*", + "method": "*" + }, + { + "path": "customvision/v3.4-preview/training/*", + "method": "*" + } + ] + }, + { + "key": "customvision.prediction", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "customvision/v3.0/prediction/*", + "method": "*" + }, + { + "path": "customvision/v3.1/prediction/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://westus2.api.cognitive.microsoft.com/", + "Bing Spell Check": "https://westus2.api.cognitive.microsoft.com/", + "Bing Entity Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Image Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing News Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Video Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Web Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Visual Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Custom Search": "https://westus2.api.cognitive.microsoft.com/", + "Face": "https://westus2.api.cognitive.microsoft.com/", + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/", + "Text Analytics": "https://westus2.api.cognitive.microsoft.com/", + "Custom Text Authoring": "https://westus2.api.cognitive.microsoft.com/", + "Conversational Language Understanding Authoring": "https://westus2.api.cognitive.microsoft.com/", + "Custom Question Answering Authoring": "https://westus2.api.cognitive.microsoft.com/", + "Custom Question Answering": "https://westus2.api.cognitive.microsoft.com/", + "ConversationalLURuntime": "https://westus2.api.cognitive.microsoft.com/", + "Language": "https://westus2.api.cognitive.microsoft.com/", + "QnAMaker": "https://westus2.api.cognitive.microsoft.com/", + "Turing": "https://westus2.api.cognitive.microsoft.com/", + "QuestionAnswering": "https://westus2.api.cognitive.microsoft.com/", + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator - Review": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator - Moderate": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator Client": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator - List Management": "https://westus2.api.cognitive.microsoft.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://westus2.api.cognitive.microsoft.com/", + "DocumentTranslation": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.0": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.1": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.1": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.2": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.3": "https://westus2.api.cognitive.microsoft.com/", + "FormRecognizer": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-31T18:55:14.3394565Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-31T18:55:14.3394565Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/macaroni-rg/providers/Microsoft.CognitiveServices/accounts/robch-translator-westus2", + "name": "robch-translator-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007696-0000-0800-0000-638276790000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "TextTranslation", + "tags": {}, + "properties": { + "endpoint": "https://api.cognitive.microsofttranslator.com/", + "internalId": "fe540c8a8e5440f29cdca33111145b44", + "dateCreated": "2022-09-14T19:58:54.0228815Z", + "callRateLimit": { + "rules": [ + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-translator-westus2", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "NetworkSecurityPerimeter" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "TextTranslation.*" + } + ], + "endpoints": { + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://robch-translator-westus2.cognitiveservices.azure.com/", + "DocumentTranslation": "https://robch-translator-westus2.cognitiveservices.azure.com/", + "Token": "https://robch-translator-westus2.cognitiveservices.azure.com/", + "Container": "https://robch-translator-westus2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-09-14T19:58:53.2339928Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-09-14T19:58:53.2339928Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/macaroni-rg/providers/Microsoft.CognitiveServices/accounts/macaroni-speech-usw2", + "name": "macaroni-speech-usw2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278003399-0000-0800-0000-638276930000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "tags": {}, + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "a2210d5e91ac43bca936a42562277b4e", + "dateCreated": "2022-10-01T05:41:12.2619965Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-10-01T05:41:12.1959688Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-10-01T05:41:12.1959688Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/new-speech-bert-team-demo", + "name": "new-speech-bert-team-demo", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278002b9a-0000-0800-0000-6382769c0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "656112bd20664554887c016c48e1f54a", + "dateCreated": "2022-10-07T18:33:52.9298316Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-10-07T18:33:52.793572Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-10-07T18:33:52.793572Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-clu-westus2", + "name": "robch-clu-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224900fe9c-0000-0800-0000-648cc3f10000\u0022", + "location": "westus2", + "sku": { + "name": "S" + }, + "kind": "TextAnalytics", + "tags": {}, + "properties": { + "endpoint": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "internalId": "ab0c722d57ae40f1ae23188c944e5c61", + "dateCreated": "2023-06-16T20:19:29.1378431Z", + "apiProperties": { + "qnaAzureSearchEndpointKey": null + }, + "callRateLimit": { + "rules": [ + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "quotaLimit": { + "rules": [ + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 2592000, + "count": 100000, + "matchPatterns": [ + { + "path": "/language/:analyze-conversations", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-clu-westus2", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "CustomerManagedStorage" + }, + { + "name": "Container", + "value": "TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis" + } + ], + "endpoints": { + "Text Analytics": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Custom Question Answering": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Language": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "QnAMaker": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Turing": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "QuestionAnswering": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "LUIS": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Container": "https://robch-clu-westus2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "principalId": "c88ee174-b73f-43e0-ae0d-c49b719d6aa0", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-06-16T20:19:28.3485433Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-06-16T20:19:28.3485433Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-westus2-formrec", + "name": "robch-westus2-formrec", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221400c9e0-0000-0800-0000-64bed4d90000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "tags": {}, + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b65d05a4214f471691548e006bdc8b1c", + "dateCreated": "2023-07-24T19:45:28.7139839Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-07-24T19:45:28.6819533Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-07-24T19:45:28.6819533Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-vision/providers/Microsoft.CognitiveServices/accounts/rhurey-vision", + "name": "rhurey-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220000a383-0000-0800-0000-64fb5da80000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://rhurey-vision.cognitiveservices.azure.com/", + "internalId": "fac3279f40384dd9b66c8d2b50ae7415", + "dateCreated": "2023-09-08T17:45:11.4028052Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "rhurey-vision", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://rhurey-vision.cognitiveservices.azure.com/", + "Container": "https://rhurey-vision.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-08T17:45:10.7393179Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-08T17:45:10.7393179Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/chschraeDev/providers/Microsoft.CognitiveServices/accounts/openai-westus2-chschrae-001", + "name": "openai-westus2-chschrae-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227001bd08-0000-0800-0000-6577901e0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "internalId": "13b51b1eca9841dd84381be047c73675", + "dateCreated": "2023-12-11T22:41:27.0998503Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-westus2-chschrae-001", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "OpenAI Whisper API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "Content Safety": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Video Translation": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Token": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T22:41:25.4339137Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T22:41:25.4339137Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulinaiwu2/providers/Microsoft.CognitiveServices/accounts/jhakulin-ai-wu2-aiservices", + "name": "jhakulin-ai-wu2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e9021dce-0000-0800-0000-659daaff0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "internalId": "22768a809b254a289805241d0626eaa4", + "dateCreated": "2024-01-09T16:11:40.836963Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-ai-wu2-aiservices-1199220910", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "Content Safety": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Token": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "80bbe0b2-4c4e-47f8-865f-f85d4076b838", + "createdByType": "Application", + "createdAt": "2024-01-09T16:11:39.1610012Z", + "lastModifiedBy": "80bbe0b2-4c4e-47f8-865f-f85d4076b838", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-09T16:11:39.1610012Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-test-20230810-ais", + "name": "ralphe-test-20230810-ais", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ed02c321-0000-0800-0000-659e2e240000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "internalId": "4a71f4c7878e4cd1a38aa2666d20c631", + "dateCreated": "2024-01-10T05:41:49.0681984Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-test-20230810-ais", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "Content Safety": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Token": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-10T05:41:47.4851745Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-10T05:41:47.4851745Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulin-wu2/providers/Microsoft.CognitiveServices/accounts/jhakulin-wu2-csa", + "name": "jhakulin-wu2-csa", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222600c30d-0000-0800-0000-65a807a90000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "internalId": "1317704b25ee425cb086377c32200a36", + "dateCreated": "2024-01-17T16:58:43.1198405Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-wu2-csa", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-wu2-csa.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-wu2-csa.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-wu2-csa.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-wu2-csa.openai.azure.com/", + "Content Safety": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Token": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-17T16:58:41.5586771Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-17T16:58:41.5586771Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulinaiwestus2/providers/Microsoft.CognitiveServices/accounts/jhakulin-ai-westus2-aiservices", + "name": "jhakulin-ai-westus2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002227002ced-0000-0800-0000-65a97b6c0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "internalId": "5f71d03b9e2e456bac469e7f9c45e0a0", + "dateCreated": "2024-01-18T19:24:22.86299Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-ai-westus2-aiservices1827254279", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "Content Safety": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Token": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "a04a5829-aa57-4d60-b5eb-a1fed82b58af", + "createdByType": "Application", + "createdAt": "2024-01-18T19:24:21.386006Z", + "lastModifiedBy": "a04a5829-aa57-4d60-b5eb-a1fed82b58af", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-18T19:24:21.386006Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/glenn-rg-test/providers/Microsoft.CognitiveServices/accounts/openAI-gharper", + "name": "openAI-gharper", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227100affd-0000-0d00-0000-6488edf10000\u0022", + "location": "westeurope", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-gharper.openai.azure.com/", + "internalId": "a8dbdc65fcb5420fb51a80f777cbb2b8", + "dateCreated": "2022-09-07T23:12:40.7919013Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-gharper", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-gharper.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-gharper.openai.azure.com/", + "OpenAI Whisper API": "https://openai-gharper.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-gharper.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-09-07T23:12:39.7574278Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-09-07T23:12:39.7574278Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account", + "name": "openai-sdk-test-automation-account", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222300d1d6-0000-0d00-0000-652e0fee0000\u0022", + "location": "westeurope", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://sdk2319.openai.azure.com/", + "internalId": "80fb6a4f4bcc47b4bb7552992ed06df7", + "dateCreated": "2023-02-14T23:01:56.5177252Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "sdk2319", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://sdk2319.openai.azure.com/", + "OpenAI Dall-E API": "https://sdk2319.openai.azure.com/", + "OpenAI Whisper API": "https://sdk2319.openai.azure.com/", + "OpenAI Model Scaleset API": "https://sdk2319.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "createdByType": "Application", + "createdAt": "2023-02-14T23:01:51.0422773Z", + "lastModifiedBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-02-14T23:01:51.0422773Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/speech-sdk-dri-test/providers/Microsoft.CognitiveServices/accounts/cog-service-westeurope-001", + "name": "cog-service-westeurope-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220f0142d0-0000-0d00-0000-64daa0260000\u0022", + "location": "westeurope", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "internalId": "8e06d8fcec8b47b29f4e1104cb9b56bf", + "dateCreated": "2023-08-14T21:44:04.9216283Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "customvision.training", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "customvision/v3.0/training/*", + "method": "*" + }, + { + "path": "customvision/v3.1/training/*", + "method": "*" + }, + { + "path": "customvision/v3.2/training/*", + "method": "*" + }, + { + "path": "customvision/v3.3/training/*", + "method": "*" + }, + { + "path": "customvision/v3.4-preview/training/*", + "method": "*" + } + ] + }, + { + "key": "customvision.prediction", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "customvision/v3.0/prediction/*", + "method": "*" + }, + { + "path": "customvision/v3.1/prediction/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-service-westeurope-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Spell Check": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Entity Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Image Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing News Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Video Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Web Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Visual Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Custom Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Face": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Computer Vision": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Container": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Text Analytics": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom Question Answering": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Language": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "QnAMaker": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Turing": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "QuestionAnswering": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "LUIS": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Unified Speech": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator Client": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "DocumentTranslation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Token": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Video Translation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westeurope.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westeurope.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Prediction_3.0": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Prediction_3.1": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Training_3.1": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Training_3.2": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Training_3.3": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "FormRecognizer": "https://cog-service-westeurope-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-08-14T21:44:04.010595Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-14T21:44:04.010595Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-speech-free-westeurope", + "name": "ralphe-speech-free-westeurope", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220900f55a-0000-0d00-0000-6543bd550000\u0022", + "location": "westeurope", + "sku": { + "name": "F0" + }, + "kind": "SpeechServices", + "tags": {}, + "properties": { + "endpoint": "https://westeurope.api.cognitive.microsoft.com/", + "internalId": "febef218a61c495391175f5e25efb06d", + "dateCreated": "2023-11-02T15:16:37.1670635Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westeurope.api.cognitive.microsoft.com/", + "Video Translation": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westeurope.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westeurope.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westeurope.api.cognitive.microsoft.com/", + "Token": "https://westeurope.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-02T15:16:36.592588Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-02T15:16:36.592588Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/speech-sdk-dri-test/providers/Microsoft.CognitiveServices/accounts/cog-service-eastasia-001", + "name": "cog-service-eastasia-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220000d83c-0000-1900-0000-64dbc1ca0000\u0022", + "location": "eastasia", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "internalId": "eea21f1158cd4410ae373e7fd3221c24", + "dateCreated": "2023-08-15T18:19:52.4317454Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-service-eastasia-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Spell Check": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Entity Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Image Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing News Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Video Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Web Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Visual Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Custom Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Face": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Computer Vision": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Container": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Text Analytics": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Custom Question Answering": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Language": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "QnAMaker": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Turing": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "QuestionAnswering": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "LUIS": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Unified Speech": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator Client": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "DocumentTranslation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Token": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Video Translation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastasia.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastasia.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "FormRecognizer": "https://cog-service-eastasia-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-08-15T18:19:51.7203882Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-15T18:19:51.7203882Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhruey-eastasia/providers/Microsoft.CognitiveServices/accounts/rhruey-speech-eastasia", + "name": "rhruey-speech-eastasia", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220b00cbcd-0000-1900-0000-652ece180000\u0022", + "location": "eastasia", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "internalId": "8e565c3f80dd40ff9aa59258f05ed056", + "dateCreated": "2023-10-17T18:10:30.2527926Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "rhruey-speech-eastasia", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Spell Check": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Entity Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Image Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing News Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Video Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Web Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Visual Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Custom Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Face": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Computer Vision": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Container": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Text Analytics": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Custom Question Answering": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Language": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "QnAMaker": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Turing": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "QuestionAnswering": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "LUIS": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Unified Speech": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator Client": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "DocumentTranslation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Token": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Video Translation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastasia.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastasia.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "FormRecognizer": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-10-17T18:10:29.1439331Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-17T18:10:29.1439331Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-RG/providers/Microsoft.CognitiveServices/accounts/SpeechSDK-AAD", + "name": "SpeechSDK-AAD", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002215008bf5-0000-0600-0000-6360296a0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://speechsdk-aad.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "551e54600acb4abf8a79e64cc10a7bed", + "dateCreated": "2021-06-11T17:27:07.9400199Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "speechsdk-aad", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Video Translation": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westcentralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westcentralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Token": "https://speechsdk-aad.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-11T17:27:07.7986598Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-11T17:39:10.3442415Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-RG/providers/Microsoft.CognitiveServices/accounts/SpeechSDK-AAD-Prediction", + "name": "SpeechSDK-AAD-Prediction", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221500e7f5-0000-0600-0000-6360296b0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "6dc30000c67440bdb7503311c0e75703", + "dateCreated": "2021-06-30T16:05:28.4557914Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "speechsdk-aad-prediction", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/", + "Unified Speech": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/", + "Container": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/" + } + }, + "systemData": { + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-30T16:51:04.9536195Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-face-rg/providers/Microsoft.CognitiveServices/accounts/rhurey-face", + "name": "rhurey-face", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221500c4f6-0000-0600-0000-6360296f0000\u0022", + "location": "westcentralus", + "sku": { + "name": "F0" + }, + "kind": "Face", + "tags": {}, + "properties": { + "endpoint": "https://rhurey-face.cognitiveservices.azure.com/", + "internalId": "c97f5686e4d5434181bd96e90f77d82d", + "dateCreated": "2021-08-31T18:20:16.0572981Z", + "customSubDomainName": "rhurey-face", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://rhurey-face.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-08-31T18:20:15.8597213Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-08-31T18:20:15.8597213Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/Carbon-Unified-Vision-RG/providers/Microsoft.CognitiveServices/accounts/carbon-vision", + "name": "carbon-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e900e64a-0000-0600-0000-647e1bec0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://carbon-vision.cognitiveservices.azure.com/", + "internalId": "3e0bc1e34205482aa12471dd29b3e764", + "dateCreated": "2022-04-08T23:16:15.4616826Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "carbon-vision", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://carbon-vision.cognitiveservices.azure.com/", + "Container": "https://carbon-vision.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T23:16:15.1824955Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T23:16:15.1824955Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brainem_CentUS/providers/Microsoft.CognitiveServices/accounts/brianem_CentralUS", + "name": "brianem_CentralUS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022150088fd-0000-0600-0000-6360298b0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westcentralus.api.cognitive.microsoft.com/", + "internalId": "fcda7e2a9d3d4c8bbd79adb01cb22fc7", + "dateCreated": "2022-04-15T01:01:03.3278478Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westcentralus.api.cognitive.microsoft.com/", + "Video Translation": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westcentralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westcentralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westcentralus.api.cognitive.microsoft.com/", + "Token": "https://westcentralus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-15T01:01:03.1918733Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-15T01:01:03.1918733Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/CICD_Resources/providers/Microsoft.CognitiveServices/accounts/CICD-Prediction-WestCentralUS", + "name": "CICD-Prediction-WestCentralUS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221500b3fe-0000-0600-0000-636029900000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/", + "internalId": "991760b08a2d4392ab374b517268dc67", + "dateCreated": "2022-08-05T22:42:06.9472463Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cicd-prediction-westcentralus", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/", + "Unified Speech": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/", + "Container": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-05T22:42:06.3202383Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-05T22:42:06.3202383Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-openai", + "name": "robch-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222801418d-0000-0500-0000-65a024b90000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://robch-openai.openai.azure.com/", + "internalId": "a3cce95049494020af517a8c890bf4f7", + "dateCreated": "2022-07-23T00:12:23.8243271Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-openai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-openai.openai.azure.com/", + "OpenAI Whisper API": "https://robch-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-openai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-07-23T00:12:23.5637158Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-07-23T00:12:23.5637158Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-southcentral-oai-rg/providers/Microsoft.CognitiveServices/accounts/robch-southcentral-oai", + "name": "robch-southcentral-oai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222500cec9-0000-0500-0000-652e4b300000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://robch-southcentral-oai.openai.azure.com/", + "internalId": "4e49fe77b12a43cc8500c8ad2310b0e4", + "dateCreated": "2022-08-08T20:19:16.4082237Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-southcentral-oai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-southcentral-oai.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-southcentral-oai.openai.azure.com/", + "OpenAI Whisper API": "https://robch-southcentral-oai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-southcentral-oai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-08T20:19:15.8928277Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-08T20:19:15.8928277Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/cog-fr-7zsbtadcut3xw", + "name": "cog-fr-7zsbtadcut3xw", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022b000a7ea-0000-0500-0000-654e39cf0000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "tags": { + "azd-env-name": "josealvar-aoai-playground", + "assignedTo": "josealvar-aoai-playground" + }, + "properties": { + "endpoint": "https://cog-fr-7zsbtadcut3xw.cognitiveservices.azure.com/", + "internalId": "206474fc851f4751a4c04f06685ed456", + "dateCreated": "2023-11-10T14:10:22.339627Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-fr-7zsbtadcut3xw", + "networkAcls": { + "defaultAction": "Allow" + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://cog-fr-7zsbtadcut3xw.cognitiveservices.azure.com/", + "Container": "https://cog-fr-7zsbtadcut3xw.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-10T14:10:21.6537803Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-10T14:10:21.6537803Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-sthcntrls-oai-rg/providers/Microsoft.CognitiveServices/accounts/ralphe-sthcntrls-oai-ai-aiservices", + "name": "ralphe-sthcntrls-oai-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002240012ab0-0000-0500-0000-65a9ce690000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "internalId": "111dfe4ca41141c9b591af369ce59c41", + "dateCreated": "2024-01-19T01:20:31.2297874Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-sthcntrls-oai-ai-aiservices-1167233503", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "Content Safety": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://southcentralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://southcentralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Token": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "ba601961-7914-45bf-b4a9-42dca40413d3", + "createdByType": "Application", + "createdAt": "2024-01-19T01:20:16.3082503Z", + "lastModifiedBy": "ba601961-7914-45bf-b4a9-42dca40413d3", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-19T01:20:16.3082503Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-eastus/providers/Microsoft.CognitiveServices/accounts/rhurey-eastus", + "name": "rhurey-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d000d3c7-0000-0100-0000-637d32070000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "07a53eb42844467daa887118295dbe25", + "dateCreated": "2021-09-30T23:21:41.273001Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-09-30T23:21:41.2004921Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-09-30T23:21:41.2004921Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/glenn-rg-test/providers/Microsoft.CognitiveServices/accounts/glenn-cx-test", + "name": "glenn-cx-test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d1006f0b-0000-0100-0000-637d35a90000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "b792850c35c248a1b8943d204a271c8b", + "dateCreated": "2022-03-26T15:44:34.7714509Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-26T15:44:34.4816389Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-26T15:44:34.4816389Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/CICD_Resources/providers/Microsoft.CognitiveServices/accounts/CI-CD-PredictionResource-Authoring", + "name": "CI-CD-PredictionResource-Authoring", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d100e05f-0000-0100-0000-637d3ace0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "tags": {}, + "properties": { + "endpoint": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/", + "internalId": "dd4a30c33bc949de9a043f8818b586d7", + "dateCreated": "2022-08-05T15:44:48.2146912Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ci-cd-predictionresource-authoring", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/", + "Unified Speech": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/", + "Container": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-05T15:44:47.7020159Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-05T15:44:47.7020159Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-eastus/providers/Microsoft.CognitiveServices/accounts/rhurey-vision-eastus", + "name": "rhurey-vision-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d1008673-0000-0100-0000-637d3bd80000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "0b85f18468f946dcbe3af77b595c30ec", + "dateCreated": "2022-09-01T17:17:30.0616005Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "customvision.training", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "customvision/v3.0/training/*", + "method": "*" + }, + { + "path": "customvision/v3.1/training/*", + "method": "*" + }, + { + "path": "customvision/v3.2/training/*", + "method": "*" + }, + { + "path": "customvision/v3.3/training/*", + "method": "*" + }, + { + "path": "customvision/v3.4-preview/training/*", + "method": "*" + } + ] + }, + { + "key": "customvision.prediction", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "customvision/v3.0/prediction/*", + "method": "*" + }, + { + "path": "customvision/v3.1/prediction/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://eastus.api.cognitive.microsoft.com/", + "Bing Spell Check": "https://eastus.api.cognitive.microsoft.com/", + "Bing Entity Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Image Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing News Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Video Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Web Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Visual Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Custom Search": "https://eastus.api.cognitive.microsoft.com/", + "Face": "https://eastus.api.cognitive.microsoft.com/", + "Computer Vision": "https://eastus.api.cognitive.microsoft.com/", + "Container": "https://eastus.api.cognitive.microsoft.com/", + "Text Analytics": "https://eastus.api.cognitive.microsoft.com/", + "Custom Text Authoring": "https://eastus.api.cognitive.microsoft.com/", + "Conversational Language Understanding Authoring": "https://eastus.api.cognitive.microsoft.com/", + "Custom Question Answering Authoring": "https://eastus.api.cognitive.microsoft.com/", + "Custom Question Answering": "https://eastus.api.cognitive.microsoft.com/", + "ConversationalLURuntime": "https://eastus.api.cognitive.microsoft.com/", + "Language": "https://eastus.api.cognitive.microsoft.com/", + "QnAMaker": "https://eastus.api.cognitive.microsoft.com/", + "Turing": "https://eastus.api.cognitive.microsoft.com/", + "QuestionAnswering": "https://eastus.api.cognitive.microsoft.com/", + "LUIS": "https://eastus.api.cognitive.microsoft.com/", + "Unified Speech": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator - Review": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator - Moderate": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator Client": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator - List Management": "https://eastus.api.cognitive.microsoft.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://eastus.api.cognitive.microsoft.com/", + "DocumentTranslation": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.0": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.1": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.1": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.2": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.3": "https://eastus.api.cognitive.microsoft.com/", + "FormRecognizer": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-09-01T17:17:29.7024847Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-09-01T17:17:29.7024847Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account-eastus", + "name": "openai-sdk-test-automation-account-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002219101808-0000-0100-0000-65a7139c0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://sdk8428.openai.azure.com/", + "internalId": "1ae165719699410c9b5dba48cfaf5755", + "dateCreated": "2023-03-11T00:56:59.0742286Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "sdk8428", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://sdk8428.openai.azure.com/", + "OpenAI Dall-E API": "https://sdk8428.openai.azure.com/", + "OpenAI Whisper API": "https://sdk8428.openai.azure.com/", + "OpenAI Model Scaleset API": "https://sdk8428.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "createdByType": "Application", + "createdAt": "2023-03-11T00:56:57.9983563Z", + "lastModifiedBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-03-11T00:56:57.9983563Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/gelecaro-ai-rg-eastus/providers/Microsoft.CognitiveServices/accounts/gelecaro-ai-eastus", + "name": "gelecaro-ai-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022160547fc-0000-0100-0000-64f258bf0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "174b1c17fe694454ace2e77e30c488d8", + "dateCreated": "2023-09-01T21:32:23.5112428Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-01T21:32:23.1783621Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-01T21:32:23.1783621Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-eastus/providers/Microsoft.CognitiveServices/accounts/rhurey-openai", + "name": "rhurey-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022a600650f-0000-0100-0000-65b14ca10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://rhurey-openai.openai.azure.com/", + "internalId": "ee8b2fda948e4fee95e99fbbf0615176", + "dateCreated": "2023-09-06T16:51:30.0789637Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "rhurey-openai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://rhurey-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://rhurey-openai.openai.azure.com/", + "OpenAI Whisper API": "https://rhurey-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://rhurey-openai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-06T16:51:29.5662123Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T16:51:29.5662123Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-resource", + "name": "markhiet-test-resource", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002219108127-0000-0100-0000-65a714ba0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://markhiet-test-resource.openai.azure.com/", + "internalId": "bc5e007e3b54448f9506bff54b2a56ef", + "dateCreated": "2023-09-06T16:55:57.0197025Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-test-resource", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://markhiet-test-resource.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-test-resource.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-test-resource.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-test-resource.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-06T16:55:56.1778549Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T16:55:56.1778549Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-green-weasel-rg/providers/Microsoft.CognitiveServices/accounts/robch-green-weasel-openai", + "name": "robch-green-weasel-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225403d46d-0000-0100-0000-654ed7560000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://robch-green-weasel-openai.openai.azure.com/", + "provisioningState": "Succeeded", + "internalId": "ca0d18cf8ea64ead92bdca7474486d5c", + "dateCreated": "2023-09-11T11:39:29.5717021Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-green-weasel-openai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-green-weasel-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-green-weasel-openai.openai.azure.com/", + "OpenAI Whisper API": "https://robch-green-weasel-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-green-weasel-openai.openai.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-11T11:39:29.2366514Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-17T23:46:25.6145811Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-brandom-pyWebAi-1st/providers/Microsoft.CognitiveServices/accounts/cog-fr-5fyb3r6njxy6q", + "name": "cog-fr-5fyb3r6njxy6q", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00229d000cc7-0000-0100-0000-6504de630000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "tags": { + "azd-env-name": "brandom-pyWebAi-1st" + }, + "properties": { + "endpoint": "https://cog-fr-5fyb3r6njxy6q.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "4e9a0ce1341448e284f6fe2f71762509", + "dateCreated": "2023-09-15T21:52:03.5203278Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-fr-5fyb3r6njxy6q", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://cog-fr-5fyb3r6njxy6q.cognitiveservices.azure.com/", + "Container": "https://cog-fr-5fyb3r6njxy6q.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-15T21:52:03.2360472Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-15T22:44:50.7147453Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-green-weasel-rg/providers/Microsoft.CognitiveServices/accounts/robch-green-weasel-speech", + "name": "robch-green-weasel-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221401a5cd-0000-0100-0000-65131b510000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "27de671683f94f5fbfc2f8c2d0bcbfdb", + "dateCreated": "2023-09-26T17:56:33.0079215Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-26T17:56:32.6802086Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-26T17:56:32.6802086Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/gelecaro-test-aoai", + "name": "gelecaro-test-aoai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221800a1ea-0000-0100-0000-653c03740000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://gelecaro-test-aoai.openai.azure.com/", + "internalId": "5416e163b8a54a9d97799554327e54e6", + "dateCreated": "2023-10-17T23:52:48.0398545Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "gelecaro-test-aoai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://gelecaro-test-aoai.openai.azure.com/", + "OpenAI Dall-E API": "https://gelecaro-test-aoai.openai.azure.com/", + "OpenAI Whisper API": "https://gelecaro-test-aoai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://gelecaro-test-aoai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "e468afe3-9b74-42e5-8e94-9a2603145b96", + "createdByType": "Application", + "createdAt": "2023-10-17T23:52:47.2203146Z", + "lastModifiedBy": "e468afe3-9b74-42e5-8e94-9a2603145b96", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-10-17T23:52:47.2203146Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-green-weasel-rg/providers/Microsoft.CognitiveServices/accounts/robch-green-weasel-aiservices", + "name": "robch-green-weasel-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002283042306-0000-0100-0000-654d03220000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "be7b5ee4d2a14feb80547b4fb84a4863", + "dateCreated": "2023-10-29T20:27:49.0181192Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-green-weasel-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "Content Safety": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-10-29T20:27:47.1425814Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-31T20:54:40.7788123Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-speech-free-eastus", + "name": "ralphe-speech-free-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ab00dd45-0000-0100-0000-65400a980000\u0022", + "location": "eastus", + "sku": { + "name": "F0" + }, + "kind": "SpeechServices", + "tags": {}, + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "5277b77f7c854b62aeb39de3aede01f7", + "dateCreated": "2023-10-30T19:57:12.5628026Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-10-30T19:57:12.2534604Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-30T19:57:12.2534604Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-elastic-panda-rg/providers/Microsoft.CognitiveServices/accounts/robch-elastic-panda-ai-aiservices", + "name": "robch-elastic-panda-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022bd04048c-0000-0100-0000-654d7f410000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "972cfde9dec24a24a2142caa21191dc2", + "dateCreated": "2023-11-07T18:44:28.5894086Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-elastic-panda-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "aad108d6-0e36-43e5-bb11-7517c777e56d", + "createdByType": "Application", + "createdAt": "2023-11-07T18:44:28.1204658Z", + "lastModifiedBy": "aad108d6-0e36-43e5-bb11-7517c777e56d", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-07T18:45:01.360616Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-elastic-panda-rg/providers/Microsoft.CognitiveServices/accounts/robch-elastic-panda419-ai-aiservices", + "name": "robch-elastic-panda419-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022b2030439-0000-0100-0000-654ad4f10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "09a7ff1fb2c34fad9b9199f9a3f4fc18", + "dateCreated": "2023-11-08T00:20:50.3354278Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-elastic-panda419-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "fb5688ee-64e4-4365-b537-1d881bd1c809", + "createdByType": "Application", + "createdAt": "2023-11-08T00:20:49.7872782Z", + "lastModifiedBy": "fb5688ee-64e4-4365-b537-1d881bd1c809", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-08T00:21:23.2302876Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/gelecaro-ai-rg-eastus/providers/Microsoft.CognitiveServices/accounts/gelecaro-ai-ai-eastus-aiservices", + "name": "gelecaro-ai-ai-eastus-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220a0c2a68-0000-0100-0000-656fc0230000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "4d7bc156ce794f64943eb144a634cb6e", + "dateCreated": "2023-11-09T18:42:21.7120272Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "gelecaro-ai-ai-eastus-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "Content Safety": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Token": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "e4656893-2603-4907-9a1a-f9aa0a5c1130", + "createdByType": "Application", + "createdAt": "2023-11-09T18:42:20.7124155Z", + "lastModifiedBy": "e4656893-2603-4907-9a1a-f9aa0a5c1130", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-09T18:43:02.8081934Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-robchai1234/providers/Microsoft.CognitiveServices/accounts/robch-ai-1234-aiservices", + "name": "robch-ai-1234-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e1009875-0000-0100-0000-65b44a880000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "ab48ccb604714660afcec28586ace76a", + "dateCreated": "2023-11-09T20:36:06.655985Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-ai-1234-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "Content Safety": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "629c2a38-5136-4b2d-890e-8fc27fd8982a", + "createdByType": "Application", + "createdAt": "2023-11-09T20:36:05.6255802Z", + "lastModifiedBy": "629c2a38-5136-4b2d-890e-8fc27fd8982a", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-09T20:36:41.5576313Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-robchai1241/providers/Microsoft.CognitiveServices/accounts/robch-ai-1241-aiservices", + "name": "robch-ai-1241-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d80ca70d-0000-0100-0000-6577a98a0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "3aa94d0ded144323a7652ab1010d2392", + "dateCreated": "2023-11-09T20:43:41.6048922Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-ai-1241-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "Content Safety": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "d3656bfe-98d8-4f71-9795-b9948c465d97", + "createdByType": "Application", + "createdAt": "2023-11-09T20:43:40.6927445Z", + "lastModifiedBy": "d3656bfe-98d8-4f71-9795-b9948c465d97", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-09T20:44:22.5070251Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cool-brown-baboon-rg/providers/Microsoft.CognitiveServices/accounts/robch-sad-gray-lion-aiservices", + "name": "robch-sad-gray-lion-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224c03c046-0000-0100-0000-654eb6cb0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "internalId": "14135cfa155e4f98a6fcd950c191ae79", + "dateCreated": "2023-11-10T19:49:20.8748484Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-sad-gray-lion-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "Content Safety": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-10T19:49:20.4221161Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-10T19:49:20.4221161Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eager-indigo-lemur-rg/providers/Microsoft.CognitiveServices/accounts/robch-busy-gray-lynx-aiservices", + "name": "robch-busy-gray-lynx-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224103c25c-0000-0100-0000-654e8cfc0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "internalId": "562b5adee1c949c88585482b5ea53376", + "dateCreated": "2023-11-10T20:04:59.7460815Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-busy-gray-lynx-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "Content Safety": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-10T20:04:57.9860582Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-10T20:04:57.9860582Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cranky-gray-panda-rg/providers/Microsoft.CognitiveServices/accounts/robch-cranky-gray-panda-ai-aiservices", + "name": "robch-cranky-gray-panda-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002248039073-0000-0100-0000-654ea7ae0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "64dfed084d794f9e861e5a40608d8172", + "dateCreated": "2023-11-10T21:56:55.6276163Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-cranky-gray-panda-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "e8feaddb-e409-434c-8c78-220d575f764b", + "createdByType": "Application", + "createdAt": "2023-11-10T21:56:54.6882884Z", + "lastModifiedBy": "e8feaddb-e409-434c-8c78-220d575f764b", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-10T21:57:37.4141237Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-ai-aiservices", + "name": "markhiet-test-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222804c675-0000-0100-0000-655248820000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "d8191c1623fd4a2a927bfc1264cc2002", + "dateCreated": "2023-11-13T15:58:45.3190154Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-test-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "Content Safety": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "c2433d6e-c8fb-4314-b9ba-075643a261f5", + "createdByType": "Application", + "createdAt": "2023-11-13T15:58:44.3200954Z", + "lastModifiedBy": "c2433d6e-c8fb-4314-b9ba-075643a261f5", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-13T15:59:17.7112763Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-pink-unicorn-rg/providers/Microsoft.CognitiveServices/accounts/robch-pink-unicorn-1114-ai-aiservices", + "name": "robch-pink-unicorn-1114-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e9046459-0000-0100-0000-65543ecc0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "4ae968d4f2014c84a020edb477587992", + "dateCreated": "2023-11-15T03:44:33.6660379Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-pink-unicorn-1114-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "eb5519cf-2610-4b63-a408-0b2b91066232", + "createdByType": "Application", + "createdAt": "2023-11-15T03:44:32.7292807Z", + "lastModifiedBy": "eb5519cf-2610-4b63-a408-0b2b91066232", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-15T03:45:07.87766Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-brandom-pyWebAi-1st/providers/Microsoft.CognitiveServices/accounts/brandom-openai-deployment", + "name": "brandom-openai-deployment", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221a10cdc2-0000-0100-0000-65a723420000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://brandom-openai-deployment.openai.azure.com/", + "internalId": "bf8fd0dc08f649fbaf7e411ea5d578fe", + "dateCreated": "2023-12-05T22:50:27.8015841Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "brandom-openai-deployment", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://brandom-openai-deployment.openai.azure.com/", + "OpenAI Dall-E API": "https://brandom-openai-deployment.openai.azure.com/", + "OpenAI Whisper API": "https://brandom-openai-deployment.openai.azure.com/", + "OpenAI Model Scaleset API": "https://brandom-openai-deployment.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-05T22:50:27.0570445Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-05T22:50:27.0570445Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/jhakulin-zen-blue-orca-rg/providers/Microsoft.CognitiveServices/accounts/jhakulin-zen-blue-orca-ai-aiservices", + "name": "jhakulin-zen-blue-orca-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022850c6005-0000-0100-0000-657348f50000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "internalId": "ae83a6b3c7ae4d538988ca4e74a85e84", + "dateCreated": "2023-12-08T16:48:35.5980808Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-zen-blue-orca-ai-aiservices-134540302", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "Content Safety": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Token": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "efd6acc6-3611-4939-967d-e2e8d32a0a4f", + "createdByType": "Application", + "createdAt": "2023-12-08T16:48:34.5548374Z", + "lastModifiedBy": "efd6acc6-3611-4939-967d-e2e8d32a0a4f", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-08T16:48:34.5548374Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/ai-markhiet-test-aiservices", + "name": "ai-markhiet-test-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022860c52ec-0000-0100-0000-65736bd10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "internalId": "0b5c00038ab142a3a820734ff6986147", + "dateCreated": "2023-12-08T19:17:19.6719135Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-markhiet-test-aiservices-962128184", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "OpenAI Dall-E API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "OpenAI Whisper API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "Content Safety": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Video Translation": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Token": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "91419dfd-34f7-44d8-bc23-a5b65c9fa261", + "createdByType": "Application", + "createdAt": "2023-12-08T19:17:19.0117695Z", + "lastModifiedBy": "91419dfd-34f7-44d8-bc23-a5b65c9fa261", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-08T19:17:19.0117695Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-sad-green-lynx-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-sad-green-lynx-ai-aiservices", + "name": "markhiet-sad-green-lynx-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022db095f39-0000-0100-0000-657b43ac0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "internalId": "dc37a26229704df1bc4ff0e59dce9003", + "dateCreated": "2023-12-14T17:57:45.4979799Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-sad-green-lynx-ai-aiservices1712556874", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "Content Safety": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Token": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "30e0b4df-98ed-4ac3-b954-b4596bd49fa6", + "createdByType": "Application", + "createdAt": "2023-12-14T17:57:45.0791242Z", + "lastModifiedBy": "30e0b4df-98ed-4ac3-b954-b4596bd49fa6", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-14T17:57:45.0791242Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/jhakulin-zen-blue-lion-rg/providers/Microsoft.CognitiveServices/accounts/jhakulin-zen-blue-lion-ai-aiservices", + "name": "jhakulin-zen-blue-lion-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228200f497-0000-0100-0000-65b029a10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "internalId": "78a5c27b1b164556b6182b43408ca18f", + "dateCreated": "2023-12-14T21:06:31.3058468Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-zen-blue-lion-ai-aiservices-432419205", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "Content Safety": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Token": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "9a0cd747-77d9-480b-8aaa-bc9e0caea0ac", + "createdByType": "Application", + "createdAt": "2023-12-14T21:06:29.7747745Z", + "lastModifiedBy": "9a0cd747-77d9-480b-8aaa-bc9e0caea0ac", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-14T21:06:29.7747745Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-cs4", + "name": "markhiet-test-cs4", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221a0a70f0-0000-0100-0000-658476640000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "e64ed4daa0a54f39bb579aa2bf2089c5", + "dateCreated": "2023-12-21T17:31:01.3903776Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-21T17:31:01.2068265Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-21T17:31:01.2068265Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-cs5", + "name": "markhiet-test-cs5", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221b0a6811-0000-0100-0000-65847baa0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "aba07d7eb9124445bd74c62501e13778", + "dateCreated": "2023-12-21T17:53:28.8035854Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-21T17:53:28.699726Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-21T17:53:28.699726Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-testRun-1-8/providers/Microsoft.CognitiveServices/accounts/aoai-7ttssbdvw4hqy", + "name": "aoai-7ttssbdvw4hqy", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022f40ebd7e-0000-0100-0000-659c83c00000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "provisioningState": "Succeeded", + "internalId": "b7d3a237103145559c36dbddf8117d5a", + "dateCreated": "2024-01-08T23:15:40.8378444Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "aoai-7ttssbdvw4hqy", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "OpenAI Dall-E API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "OpenAI Whisper API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "OpenAI Model Scaleset API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-08T23:15:40.5310906Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-08T23:22:23.70613Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralph-test-azure-openai", + "name": "ralph-test-azure-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022210ff68e-0000-0100-0000-659e2b730000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": { + "owner": "ralphe", + "type": "testing" + }, + "properties": { + "endpoint": "https://ralph-test-azure-openai.openai.azure.com/", + "internalId": "727c4af732f949cfa9c567da29c3911c", + "dateCreated": "2024-01-10T05:28:08.3988819Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralph-test-azure-openai", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://ralph-test-azure-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://ralph-test-azure-openai.openai.azure.com/", + "OpenAI Whisper API": "https://ralph-test-azure-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralph-test-azure-openai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-10T05:28:07.9134985Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-10T05:28:07.9134985Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brianem_endpoint_testing/providers/Microsoft.CognitiveServices/accounts/BrianEM-endpointtest-es-us", + "name": "BrianEM-endpointtest-es-us", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022c40fe1bf-0000-0100-0000-65a418610000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "ea8a883cdde942bf90665ce6d55345b2", + "dateCreated": "2024-01-14T17:22:41.0944634Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-14T17:22:40.7049666Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-14T17:22:40.7049666Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-copilot2/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-copilot2-aiservices", + "name": "markhiet-ai-copilot2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228200867f-0000-0100-0000-65b026f10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "internalId": "ee2dcb3a8633457f82bf1ce5015f5b8f", + "dateCreated": "2024-01-23T20:47:56.3431593Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-copilot2-aiservices-635106369", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "Content Safety": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "a552af86-c1d5-441a-b6e4-9b8797b2b928", + "createdByType": "Application", + "createdAt": "2024-01-23T20:47:55.9179863Z", + "lastModifiedBy": "a552af86-c1d5-441a-b6e4-9b8797b2b928", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-23T20:47:55.9179863Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-nubackai/providers/Microsoft.CognitiveServices/accounts/nuback-ai-aiservices", + "name": "nuback-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022320104e1-0000-0100-0000-65b8377d0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "internalId": "14bef067fca5409eb0f9f55a6b347c6e", + "dateCreated": "2024-01-29T23:40:29.2817255Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "nuback-ai-aiservices-2037333326", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "OpenAI Dall-E API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "OpenAI Whisper API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "OpenAI Model Scaleset API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "Content Safety": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Video Translation": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Token": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7a404bbb-ed66-4bf6-8f10-699936c820b9", + "createdByType": "Application", + "createdAt": "2024-01-29T23:40:28.2047898Z", + "lastModifiedBy": "7a404bbb-ed66-4bf6-8f10-699936c820b9", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-29T23:40:28.2047898Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-eastus2", + "name": "openai-sdk-test-automation-eastus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222f00d6b0-0000-0200-0000-65579cc20000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "internalId": "1ab45697a3a244a8a6138e46cc081963", + "dateCreated": "2023-08-29T17:12:08.8832417Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-sdk-test-automation-eastus2", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "OpenAI Whisper API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-08-29T17:12:08.1799585Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-29T17:12:08.1799585Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cranky-red-koala-rg/providers/Microsoft.CognitiveServices/accounts/robch-cranky-red-koala-ais", + "name": "robch-cranky-red-koala-ais", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00223500cdd8-0000-0200-0000-655be3520000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "internalId": "63a9c66a7b234d45b1c9c4de823fcd0e", + "dateCreated": "2023-11-20T22:51:03.1556509Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-cranky-red-koala-ais", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "OpenAI Whisper API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "Content Safety": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Video Translation": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Token": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-20T22:51:01.5885312Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-20T22:51:01.5885312Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2", + "name": "robch-oai-eastus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002266006ba1-0000-0200-0000-65774d5f0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://robch-oai-eastus2.openai.azure.com/", + "internalId": "deaf47e5246148dc891f41d7bb78a373", + "dateCreated": "2023-11-30T14:48:10.6589892Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-oai-eastus2", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-oai-eastus2.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-oai-eastus2.openai.azure.com/", + "OpenAI Whisper API": "https://robch-oai-eastus2.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-oai-eastus2.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-30T14:48:10.3813239Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-30T14:48:10.3813239Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/josealvar-azd-tests-dev/providers/Microsoft.CognitiveServices/accounts/audio-testing-account", + "name": "audio-testing-account", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022850056d7-0000-0200-0000-658571190000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://audio-testing-account.openai.azure.com/", + "internalId": "982aecf5e1fb44f3a2cb24a27d466b53", + "dateCreated": "2023-12-22T11:20:40.0650732Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "audio-testing-account", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://audio-testing-account.openai.azure.com/", + "OpenAI Dall-E API": "https://audio-testing-account.openai.azure.com/", + "OpenAI Whisper API": "https://audio-testing-account.openai.azure.com/", + "OpenAI Model Scaleset API": "https://audio-testing-account.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-22T11:20:39.842432Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-22T11:20:39.842432Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-test-azure-ai-eastus2-aiservices", + "name": "ralphe-test-azure-ai-eastus2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00229d011ec5-0000-0200-0000-659e40670000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "internalId": "4bed94cfa8cf49a3ab67ae8377e2c02f", + "dateCreated": "2024-01-10T06:34:01.8168764Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-test-azure-ai-eastus2-aiservices1110731492", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "Content Safety": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Token": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "b5ee77d0-1198-4bcd-818e-9d282a000435", + "createdByType": "Application", + "createdAt": "2024-01-10T06:34:00.9308234Z", + "lastModifiedBy": "b5ee77d0-1198-4bcd-818e-9d282a000435", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-10T06:34:00.9308234Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai", + "name": "markhiet-eus2-oai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b017d68-0000-0200-0000-65a174150000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "internalId": "f40ab5311b4040e5ac2d1e914a40167a", + "dateCreated": "2024-01-12T17:16:05.300538Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-eus2-oai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-eus2-oai.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-eus2-oai.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-eus2-oai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-eus2-oai.openai.azure.com/", + "Content Safety": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Token": "https://markhiet-eus2-oai.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T17:16:04.8520994Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T17:16:04.8520994Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai2", + "name": "markhiet-eus2-oai2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b011ab5-0000-0200-0000-65a1ad0b0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://eastus2.api.cognitive.microsoft.com/", + "internalId": "1668f2cac701473e860ea58be1752f54", + "dateCreated": "2024-01-12T21:19:19.8096096Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T21:19:19.7091106Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T21:19:19.7091106Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai3", + "name": "markhiet-eus2-oai3", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b0107b9-0000-0200-0000-65a1b0020000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://eastus2.api.cognitive.microsoft.com/", + "internalId": "6e2ee1bfe8d641999150c1bbc3d90c92", + "dateCreated": "2024-01-12T21:32:15.8155376Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Language Model Instance API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus2.api.cognitive.microsoft.com/", + "Content Safety": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus2.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus2.api.cognitive.microsoft.com/", + "Token": "https://eastus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T21:32:15.7347156Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T21:32:15.7347156Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai4", + "name": "markhiet-eus2-oai4", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b0168be-0000-0200-0000-65a1b53a0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "internalId": "0d860d1ff2984f1c99f0ade8c90347c3", + "dateCreated": "2024-01-12T21:54:23.5071188Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-eus2-oai4", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-eus2-oai4.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-eus2-oai4.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-eus2-oai4.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-eus2-oai4.openai.azure.com/", + "Content Safety": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Token": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T21:54:22.0846617Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T21:54:22.0846617Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulin-cool-teal-yak/providers/Microsoft.CognitiveServices/accounts/ai-jhakulin-cool-teal-yak-aiservices", + "name": "ai-jhakulin-cool-teal-yak-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002207000845-0000-0200-0000-65aed5a80000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "internalId": "6cf69f8a71fa4d03bea4b41b102e6280", + "dateCreated": "2024-01-22T20:50:10.7439519Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-jhakulin-cool-teal-yak-aiservices1083288906", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "OpenAI Dall-E API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "OpenAI Whisper API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "Content Safety": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Video Translation": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Token": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "31db4d50-8e7a-4997-ab16-6f7197baa14c", + "createdByType": "Application", + "createdAt": "2024-01-22T20:50:09.4204915Z", + "lastModifiedBy": "31db4d50-8e7a-4997-ab16-6f7197baa14c", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-22T20:50:09.4204915Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/dcohen-azure-ai-resource-group/providers/Microsoft.CognitiveServices/accounts/dcohen-ai-resource-name-aiservices", + "name": "dcohen-ai-resource-name-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221700fc3c-0000-0200-0000-65b8408c0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "internalId": "60b26d21c42a4fc4b886af3768303500", + "dateCreated": "2024-01-23T23:43:30.8409674Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "dcohen-ai-resource-name-aiservices730519125", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "OpenAI Dall-E API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "OpenAI Whisper API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "OpenAI Model Scaleset API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "Content Safety": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Video Translation": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Token": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "79deff58-236b-4f82-b300-26760e7d7354", + "createdByType": "Application", + "createdAt": "2024-01-23T23:43:30.5272774Z", + "lastModifiedBy": "79deff58-236b-4f82-b300-26760e7d7354", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-23T23:43:30.5272774Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-copilot3/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-copilot3-aiservices", + "name": "markhiet-ai-copilot3-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022090034a3-0000-0200-0000-65b127470000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "internalId": "7df4e8fcd449492caaf69ba908de572f", + "dateCreated": "2024-01-24T14:59:00.7554823Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-copilot3-aiservices-1878066100", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "Content Safety": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "f2a09487-78b3-459f-928f-0afa38b9ebe3", + "createdByType": "Application", + "createdAt": "2024-01-24T14:58:59.9409553Z", + "lastModifiedBy": "f2a09487-78b3-459f-928f-0afa38b9ebe3", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-24T14:58:59.9409553Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-try2-eastus2/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2-try2", + "name": "robch-oai-eastus2-try2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002212006862-0000-0200-0000-65b5c7f50000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "internalId": "f539b31f6ea8483c9277ebe1d4d16905", + "dateCreated": "2024-01-28T03:20:09.1009532Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-oai-eastus2-try2", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "OpenAI Whisper API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "Content Safety": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Video Translation": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Token": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-28T03:20:07.435374Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-28T03:20:07.435374Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/map-rg/providers/Microsoft.CognitiveServices/accounts/map-test", + "name": "map-test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ec04996e-0000-1100-0000-65bbe9aa0000\u0022", + "location": "uksouth", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://map-test.openai.azure.com/", + "internalId": "0e6c8f46babf42adb0c01c5161842ae3", + "dateCreated": "2024-01-25T23:24:40.0318283Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "map-test", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://map-test.openai.azure.com/", + "OpenAI Dall-E API": "https://map-test.openai.azure.com/", + "OpenAI Whisper API": "https://map-test.openai.azure.com/", + "OpenAI Model Scaleset API": "https://map-test.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-25T23:24:38.72244Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-25T23:24:38.72244Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-northcentralus", + "name": "openai-sdk-test-automation-northcentralus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002249016f4f-0000-0400-0000-65b802e80000\u0022", + "location": "northcentralus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "internalId": "445fed360e0c420a8cb304c80f72f422", + "dateCreated": "2023-07-11T22:44:14.2496938Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-sdk-test-automation-northcentralus", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + }, + { + "name": "NetworkSecurityPerimeter" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "OpenAI Whisper API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-07-11T22:44:13.8446582Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-07-11T22:44:13.8446582Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-centralus/providers/Microsoft.CognitiveServices/accounts/robch-centralus-speech", + "name": "robch-centralus-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002219010523-0000-0300-0000-635057d80000\u0022", + "location": "centralus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://centralus.api.cognitive.microsoft.com/", + "internalId": "fdfe80de1a4946f684ceba1c33332542", + "dateCreated": "2022-07-07T01:08:15.608565Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://centralus.api.cognitive.microsoft.com/", + "Video Translation": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://centralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://centralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://centralus.api.cognitive.microsoft.com/", + "Token": "https://centralus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-07-07T01:08:15.4404197Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-07-07T01:08:15.4404197Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account-sweden-central", + "name": "openai-sdk-test-automation-account-sweden-central", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220300d879-0000-4700-0000-65c3f8a80000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "internalId": "19023da71da947318222941a35d56355", + "dateCreated": "2023-11-15T21:31:36.03013Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-sdk-test-automation-account-sweden-central", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "OpenAI Whisper API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-15T21:31:34.7261971Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-15T21:31:34.7261971Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account-eastus2", + "name": "openai-sdk-test-automation-account-eastus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ab04566f-0000-4700-0000-6557c3810000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://sdk3757.openai.azure.com/", + "internalId": "fc0feea6b22c48cfb29cecd4a2076b5c", + "dateCreated": "2023-11-17T19:48:09.9488596Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "sdk3757", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://sdk3757.openai.azure.com/", + "OpenAI Dall-E API": "https://sdk3757.openai.azure.com/", + "OpenAI Whisper API": "https://sdk3757.openai.azure.com/", + "OpenAI Model Scaleset API": "https://sdk3757.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "createdByType": "Application", + "createdAt": "2023-11-17T19:48:08.4658264Z", + "lastModifiedBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-17T19:48:08.4658264Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/josealvar-azd-tests-dev/providers/Microsoft.CognitiveServices/accounts/chat-completions-testing-account", + "name": "chat-completions-testing-account", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220000e7d9-0000-4700-0000-65a0807d0000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://chat-completions-testing-account.openai.azure.com/", + "internalId": "f15adc34ff0b4687b5bf49c97ad94a13", + "dateCreated": "2023-12-22T11:20:41.7268214Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "chat-completions-testing-account", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://chat-completions-testing-account.openai.azure.com/", + "OpenAI Dall-E API": "https://chat-completions-testing-account.openai.azure.com/", + "OpenAI Whisper API": "https://chat-completions-testing-account.openai.azure.com/", + "OpenAI Model Scaleset API": "https://chat-completions-testing-account.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-22T11:20:40.9511898Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-22T11:20:40.9511898Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulin-bold-navy-lynx/providers/Microsoft.CognitiveServices/accounts/ai-jhakulin-bold-navy-lynx-aiservices", + "name": "ai-jhakulin-bold-navy-lynx-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220800f32d-0000-4700-0000-65bc1ed20000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "internalId": "fabc0cda58424abd91cf17ef5e5e5413", + "dateCreated": "2024-01-24T16:58:09.3084099Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-jhakulin-bold-navy-lynx-aiservices794017277", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "OpenAI Dall-E API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "OpenAI Whisper API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "Content Safety": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Video Translation": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://swedencentral.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://swedencentral.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Token": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "355be17f-743f-45e1-a020-142b30242636", + "createdByType": "Application", + "createdAt": "2024-01-24T16:58:08.0131877Z", + "lastModifiedBy": "355be17f-743f-45e1-a020-142b30242636", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-24T16:58:08.0131877Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-copilot4/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-copilot4-aiservices", + "name": "markhiet-ai-copilot4-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220500ee50-0000-4700-0000-65b149800000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "internalId": "ded2c5ea7630445697d055f9900df622", + "dateCreated": "2024-01-24T17:27:13.876655Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-copilot4-aiservices1505757944", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "Content Safety": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://swedencentral.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://swedencentral.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "ef3a2b65-ddc0-4043-8a78-e015bf72976d", + "createdByType": "Application", + "createdAt": "2024-01-24T17:27:12.3452438Z", + "lastModifiedBy": "ef3a2b65-ddc0-4043-8a78-e015bf72976d", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-24T17:27:12.3452438Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-chat/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-chat", + "name": "markhiet-ai-chat", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220700a90f-0000-4700-0000-65b7f1d80000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-chat.openai.azure.com/", + "internalId": "27e427046f534e318697786f457ddab2", + "dateCreated": "2024-01-29T18:38:01.5947079Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-chat", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://markhiet-ai-chat.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-chat.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-chat.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-chat.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-29T18:38:00.8384954Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-29T18:38:00.8384954Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-testsearch/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-testsearch-aiservices", + "name": "markhiet-ai-testsearch-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222600b3b2-0000-4700-0000-65c4fed00000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "internalId": "b1b491470b014b439a9703fad1c47065", + "dateCreated": "2024-02-08T16:14:41.1586899Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-testsearch-aiservices-986720030", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "Content Safety": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://swedencentral.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://swedencentral.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "6ee48637-d751-4fe7-aa54-38f01126948c", + "createdByType": "Application", + "createdAt": "2024-02-08T16:14:39.4547208Z", + "lastModifiedBy": "6ee48637-d751-4fe7-aa54-38f01126948c", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-02-08T16:14:39.4547208Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-lavendar-unicorn-canadaeast-rg/providers/Microsoft.CognitiveServices/accounts/aiservices-romantic-navy-gibbon", + "name": "aiservices-romantic-navy-gibbon", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224d0044df-0000-0900-0000-655a559c0000\u0022", + "location": "canadaeast", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://aiservices-romantic-navy-gibbon.cognitiveservices.azure.com/", + "internalId": "53ca5cb8ed1040668d99b36310c0e418", + "dateCreated": "2023-11-09T00:37:13.1419662Z", + "callRateLimit": { + "rules": [ + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "aiservices-romantic-navy-gibbon", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + } + ], + "endpoints": { + "Computer Vision": "https://aiservices-romantic-navy-gibbon.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "OpenAI Dall-E API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "OpenAI Whisper API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "OpenAI Model Scaleset API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "Content Safety": "https://aiservices-romantic-navy-gibbon.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-09T00:37:11.8160051Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-09T00:37:11.8160051Z" + } + } + ] + } + }, + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments?api-version=2023-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account deployment list", + "Connection": "close", + "ParameterSetName": "--output --subscription -g -n --query", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "6c6d883d-c943-11ee-be9d-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "2827", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:09:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7", + "x-ms-correlation-request-id": "44c6203d-b2ed-42c5-b3dd-fc8d21a027ef", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "f5eded89-c68b-4f46-9579-b8413214308e", + "x-ms-routing-request-id": "WESTUS2:20240212T010952Z:44c6203d-b2ed-42c5-b3dd-fc8d21a027ef", + "X-MSEdge-Ref": "Ref A: 69B7373DCF9148F9B6641FA85462ECC2 Ref B: CO6AA3150220045 Ref C: 2024-02-12T01:09:52Z" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/gpt-4-32k-0613", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "gpt-4-32k-0613", + "sku": { + "name": "Standard", + "capacity": 50 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "gpt-4-32k", + "version": "0613" + }, + "versionUpgradeOption": "OnceCurrentVersionExpired", + "capabilities": { + "chatCompletion": "true" + }, + "raiPolicyName": "Microsoft.Default", + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 50 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 50000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-30T14:49:36.8999152Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-30T14:49:36.8999152Z" + }, + "etag": "\u0022ff4a51c4-e5aa-421a-9230-ed570ff837a9\u0022" + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/text-embedding-ada-002-2", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "text-embedding-ada-002-2", + "sku": { + "name": "Standard", + "capacity": 120 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "text-embedding-ada-002", + "version": "2" + }, + "versionUpgradeOption": "OnceNewDefaultVersionAvailable", + "capabilities": { + "embeddings": "true", + "embeddingsMaxInputs": "2048" + }, + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 120 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 120000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-05T14:45:01.2344483Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-05T14:45:01.2344483Z" + }, + "etag": "\u0022401953cf-f62f-46f3-af5b-fbb8d5fcf9b1\u0022" + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/gpt-35-turbo-16k-0613", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "gpt-35-turbo-16k-0613", + "sku": { + "name": "Standard", + "capacity": 120 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "gpt-35-turbo-16k", + "version": "0613" + }, + "versionUpgradeOption": "OnceNewDefaultVersionAvailable", + "capabilities": { + "chatCompletion": "true" + }, + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 120 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 120000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T17:56:47.2743282Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T17:56:47.2743282Z" + }, + "etag": "\u002259030dbd-7418-41cc-ad13-45d76308c54d\u0022" + } + ] + } + }, + { + "RequestUri": "https://fakeendpoint/v2/track", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "identity", + "Connection": "close", + "Content-Length": "3740", + "Content-Type": "application/json; charset=utf-8", + "User-Agent": "Python-urllib/3.11", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": "[{\u0022ver\u0022: 1, \u0022name\u0022: \u0022Microsoft.ApplicationInsights.Event\u0022, \u0022time\u0022: \u0022TIME\u0022, \u0022sampleRate\u0022: 100.0, \u0022iKey\u0022: \u0022INSTRUMENTATION_KEY\u0022, \u0022tags\u0022: {\u0022ai.device.id\u0022: \u0022rhurey-wfh\u0022, \u0022ai.device.locale\u0022: \u0022en_US\u0022, \u0022ai.device.osVersion\u0022: \u002210.0.22631\u0022, \u0022ai.device.type\u0022: \u0022Other\u0022, \u0022ai.internal.sdkVersion\u0022: \u0022py3:0.11.9\u0022}, \u0022data\u0022: {\u0022baseType\u0022: \u0022EventData\u0022, \u0022baseData\u0022: {\u0022ver\u0022: 2, \u0022name\u0022: \u0022azurecli/command\u0022, \u0022properties\u0022: {\u0022Context.Default.AzureCLI.AllowBroker\u0022: \u0022False\u0022, \u0022Context.Default.AzureCLI.ClientRequestId\u0022: \u00226c6d883d-c943-11ee-be9d-c8d9d2049b34\u0022, \u0022Context.Default.AzureCLI.CloudName\u0022: \u0022AzureCloud\u0022, \u0022Context.Default.AzureCLI.CoreVersion\u0022: \u00222.57.0\u0022, \u0022Context.Default.AzureCLI.DefaultOutputType\u0022: \u0022unknown\u0022, \u0022Context.Default.AzureCLI.EndTime\u0022: \u00222024-02-12 01:09:52.905245\u0022, \u0022Context.Default.AzureCLI.EnvironmentVariables\u0022: \u0022[]\u0022, \u0022Context.Default.AzureCLI.InitTimeElapsed\u0022: \u00221.088778\u0022, \u0022Context.Default.AzureCLI.InstallationId\u0022: \u002255059476-d0fd-11ed-8796-c8d9d2049b34\u0022, \u0022Context.Default.AzureCLI.Installer\u0022: \u0022MSI\u0022, \u0022Context.Default.AzureCLI.InvokeTimeElapsed\u0022: \u00221.490777\u0022, \u0022Context.Default.AzureCLI.Locale\u0022: \u0022English_United States,1252\u0022, \u0022Context.Default.AzureCLI.Mode\u0022: \u0022default\u0022, \u0022Context.Default.AzureCLI.OutputType\u0022: \u0022json\u0022, \u0022Context.Default.AzureCLI.Params\u0022: \u0022--output,--subscription,-g,-n,--query\u0022, \u0022Context.Default.AzureCLI.PollEndTime\u0022: \u0022None\u0022, \u0022Context.Default.AzureCLI.PollStartTime\u0022: \u0022None\u0022, \u0022Context.Default.AzureCLI.PythonVersion\u0022: \u00223.11.7\u0022, \u0022Context.Default.AzureCLI.RawCommand\u0022: \u0022cognitiveservices account deployment list\u0022, \u0022Context.Default.AzureCLI.ShellType\u0022: \u0022cmd\u0022, \u0022Context.Default.AzureCLI.ShowSurveyMessage\u0022: \u0022False\u0022, \u0022Context.Default.AzureCLI.Source\u0022: \u0022az\u0022, \u0022Context.Default.AzureCLI.StartTime\u0022: \u00222024-02-12 01:09:51.414350\u0022, \u0022Context.Default.AzureCLI.TelemetryVersion\u0022: \u00222.0\u0022, \u0022Context.Default.AzureCLI.UserAzureId\u0022: \u00225f410ad1fc24a4547edd18a29584bf5c7572c48978dd5c8cd5fa93e771db858f\u0022, \u0022Context.Default.AzureCLI.UserAzureSubscriptionId\u0022: \u0022a18897a6-7e44-457d-9260-f2854c0aca42\u0022, \u0022Context.Default.AzureCLI.debug_info\u0022: \u0022\u0022, \u0022Context.Default.AzureCLI.error_type\u0022: \u0022None\u0022, \u0022Context.Default.AzureCLI.exception_name\u0022: \u0022None\u0022, \u0022Context.Default.VS.Core.Distro.Id\u0022: \u0022\u0022, \u0022Context.Default.VS.Core.Distro.Name\u0022: \u0022\u0022, \u0022Context.Default.VS.Core.Distro.Version\u0022: \u0022\u0022, \u0022Context.Default.VS.Core.ExeName\u0022: \u0022azurecli\u0022, \u0022Context.Default.VS.Core.ExeVersion\u0022: \u00222.57.0@none\u0022, \u0022Context.Default.VS.Core.MacAddressHash\u0022: \u0022a1a9745e6932c20d63d29c7e0eeb778b2420c595247a087002a4dd921b854b1e\u0022, \u0022Context.Default.VS.Core.Machine.Id\u0022: \u0022a1a9745e-6932-c20d-63d2-9c7e0eeb778b\u0022, \u0022Context.Default.VS.Core.OS.Platform\u0022: \u0022windows-10-10.0.22631-sp0\u0022, \u0022Context.Default.VS.Core.OS.Type\u0022: \u0022windows\u0022, \u0022Context.Default.VS.Core.OS.Version\u0022: \u002210.0.22631\u0022, \u0022Context.Default.VS.Core.TelemetryApi.ProductVersion\u0022: \u0022azurecli@2.57.0\u0022, \u0022Context.Default.VS.Core.User.Id\u0022: \u002255059476-d0fd-11ed-8796-c8d9d2049b34\u0022, \u0022Context.Default.VS.Core.User.IsMicrosoftInternal\u0022: \u0022False\u0022, \u0022Context.Default.VS.Core.User.IsOptedIn\u0022: \u0022True\u0022, \u0022Reserved.ChannelUsed\u0022: \u0022AI\u0022, \u0022Reserved.DataModel.Action.Result\u0022: \u0022Success\u0022, \u0022Reserved.DataModel.Action.Type\u0022: \u0022Atomic\u0022, \u0022Reserved.DataModel.CorrelationId\u0022: \u00227d3e28e3-9ff5-40a8-9715-695ad2909260\u0022, \u0022Reserved.DataModel.EntityName\u0022: \u0022cognitiveservices-account-deployment-list\u0022, \u0022Reserved.DataModel.EntityType\u0022: \u0022UserTask\u0022, \u0022Reserved.DataModel.FeatureName\u0022: \u0022command\u0022, \u0022Reserved.DataModel.ProductName\u0022: \u0022azurecli\u0022, \u0022Reserved.DataModel.Source\u0022: \u0022DataModelAPI\u0022, \u0022Reserved.EventId\u0022: \u002266b08450-4c22-42d9-a08a-24810f20d06c\u0022, \u0022Reserved.SessionId\u0022: \u0022e6a240fa59b64d77c5d8ab8c583d455a616ae6cc3104c7b2bfd5194d180c265e\u0022}, \u0022measurements\u0022: {\u0022Reserved.DataModel.EntitySchemaVersion\u0022: 4, \u0022Reserved.DataModel.Severity\u0022: 0, \u0022Reserved.SequenceNumber\u0022: 1, \u0022Reserved.TimeSinceSessionStart\u0022: 0}}}}]", + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "close", + "Content-Length": "49", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:09:53 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "itemsReceived": 1, + "itemsAccepted": 1, + "errors": [] + } + }, + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments?api-version=2023-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account deployment list", + "Connection": "close", + "ParameterSetName": "--output --subscription -g -n --query", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "6e4b35e5-c943-11ee-8c70-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "2827", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:09:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7", + "x-ms-correlation-request-id": "ef7ec0af-b059-4bd8-b8e6-d0d0a2434424", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "a666fbcb-b069-438f-ba0f-1e1ed88baa3a", + "x-ms-routing-request-id": "WESTUS2:20240212T010955Z:ef7ec0af-b059-4bd8-b8e6-d0d0a2434424", + "X-MSEdge-Ref": "Ref A: 00627393BB51460D80BE52E1BB18CFC6 Ref B: CO6AA3150218049 Ref C: 2024-02-12T01:09:55Z" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/gpt-4-32k-0613", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "gpt-4-32k-0613", + "sku": { + "name": "Standard", + "capacity": 50 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "gpt-4-32k", + "version": "0613" + }, + "versionUpgradeOption": "OnceCurrentVersionExpired", + "capabilities": { + "chatCompletion": "true" + }, + "raiPolicyName": "Microsoft.Default", + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 50 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 50000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-30T14:49:36.8999152Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-30T14:49:36.8999152Z" + }, + "etag": "\u0022ff4a51c4-e5aa-421a-9230-ed570ff837a9\u0022" + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/text-embedding-ada-002-2", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "text-embedding-ada-002-2", + "sku": { + "name": "Standard", + "capacity": 120 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "text-embedding-ada-002", + "version": "2" + }, + "versionUpgradeOption": "OnceNewDefaultVersionAvailable", + "capabilities": { + "embeddings": "true", + "embeddingsMaxInputs": "2048" + }, + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 120 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 120000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-05T14:45:01.2344483Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-05T14:45:01.2344483Z" + }, + "etag": "\u0022401953cf-f62f-46f3-af5b-fbb8d5fcf9b1\u0022" + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/gpt-35-turbo-16k-0613", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "gpt-35-turbo-16k-0613", + "sku": { + "name": "Standard", + "capacity": 120 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "gpt-35-turbo-16k", + "version": "0613" + }, + "versionUpgradeOption": "OnceNewDefaultVersionAvailable", + "capabilities": { + "chatCompletion": "true" + }, + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 120 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 120000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T17:56:47.2743282Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T17:56:47.2743282Z" + }, + "etag": "\u002259030dbd-7418-41cc-ad13-45d76308c54d\u0022" + } + ] + } + }, + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments?api-version=2023-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account deployment list", + "Connection": "close", + "ParameterSetName": "--output --subscription -g -n --query", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "7041ed6d-c943-11ee-a8e0-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "2827", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:09:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7", + "x-ms-correlation-request-id": "03dc462e-872e-4a1f-b283-ff0fd6fdbdf1", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "7f4d3fb2-0520-4a1d-a7e8-4ded3749b8e0", + "x-ms-routing-request-id": "WESTUS2:20240212T010959Z:03dc462e-872e-4a1f-b283-ff0fd6fdbdf1", + "X-MSEdge-Ref": "Ref A: DF397B9564854938AED18AD5A7BE7A62 Ref B: CO6AA3150217009 Ref C: 2024-02-12T01:09:58Z" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/gpt-4-32k-0613", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "gpt-4-32k-0613", + "sku": { + "name": "Standard", + "capacity": 50 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "gpt-4-32k", + "version": "0613" + }, + "versionUpgradeOption": "OnceCurrentVersionExpired", + "capabilities": { + "chatCompletion": "true" + }, + "raiPolicyName": "Microsoft.Default", + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 50 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 50000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-30T14:49:36.8999152Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-30T14:49:36.8999152Z" + }, + "etag": "\u0022ff4a51c4-e5aa-421a-9230-ed570ff837a9\u0022" + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/text-embedding-ada-002-2", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "text-embedding-ada-002-2", + "sku": { + "name": "Standard", + "capacity": 120 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "text-embedding-ada-002", + "version": "2" + }, + "versionUpgradeOption": "OnceNewDefaultVersionAvailable", + "capabilities": { + "embeddings": "true", + "embeddingsMaxInputs": "2048" + }, + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 120 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 120000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-05T14:45:01.2344483Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-05T14:45:01.2344483Z" + }, + "etag": "\u0022401953cf-f62f-46f3-af5b-fbb8d5fcf9b1\u0022" + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/deployments/gpt-35-turbo-16k-0613", + "type": "Microsoft.CognitiveServices/accounts/deployments", + "name": "gpt-35-turbo-16k-0613", + "sku": { + "name": "Standard", + "capacity": 120 + }, + "properties": { + "model": { + "format": "OpenAI", + "name": "gpt-35-turbo-16k", + "version": "0613" + }, + "versionUpgradeOption": "OnceNewDefaultVersionAvailable", + "capabilities": { + "chatCompletion": "true" + }, + "provisioningState": "Succeeded", + "rateLimits": [ + { + "key": "request", + "renewalPeriod": 10, + "count": 120 + }, + { + "key": "token", + "renewalPeriod": 60, + "count": 120000 + } + ] + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T17:56:47.2743282Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T17:56:47.2743282Z" + }, + "etag": "\u002259030dbd-7418-41cc-ad13-45d76308c54d\u0022" + } + ] + } + }, + { + "RequestUri": "https://fakeendpoint/v2/track", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "identity", + "Connection": "close", + "Content-Length": "3740", + "Content-Type": "application/json; charset=utf-8", + "User-Agent": "Python-urllib/3.11", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": "[{\u0022ver\u0022: 1, \u0022name\u0022: \u0022Microsoft.ApplicationInsights.Event\u0022, \u0022time\u0022: \u0022TIME\u0022, \u0022sampleRate\u0022: 100.0, \u0022iKey\u0022: \u0022INSTRUMENTATION_KEY\u0022, \u0022tags\u0022: {\u0022ai.device.id\u0022: \u0022rhurey-wfh\u0022, \u0022ai.device.locale\u0022: \u0022en_US\u0022, \u0022ai.device.osVersion\u0022: \u002210.0.22631\u0022, \u0022ai.device.type\u0022: \u0022Other\u0022, \u0022ai.internal.sdkVersion\u0022: \u0022py3:0.11.9\u0022}, \u0022data\u0022: {\u0022baseType\u0022: \u0022EventData\u0022, \u0022baseData\u0022: {\u0022ver\u0022: 2, \u0022name\u0022: \u0022azurecli/command\u0022, \u0022properties\u0022: {\u0022Context.Default.AzureCLI.AllowBroker\u0022: \u0022False\u0022, \u0022Context.Default.AzureCLI.ClientRequestId\u0022: \u00227041ed6d-c943-11ee-a8e0-c8d9d2049b34\u0022, \u0022Context.Default.AzureCLI.CloudName\u0022: \u0022AzureCloud\u0022, \u0022Context.Default.AzureCLI.CoreVersion\u0022: \u00222.57.0\u0022, \u0022Context.Default.AzureCLI.DefaultOutputType\u0022: \u0022unknown\u0022, \u0022Context.Default.AzureCLI.EndTime\u0022: \u00222024-02-12 01:09:59.525001\u0022, \u0022Context.Default.AzureCLI.EnvironmentVariables\u0022: \u0022[]\u0022, \u0022Context.Default.AzureCLI.InitTimeElapsed\u0022: \u00221.029195\u0022, \u0022Context.Default.AzureCLI.InstallationId\u0022: \u002255059476-d0fd-11ed-8796-c8d9d2049b34\u0022, \u0022Context.Default.AzureCLI.Installer\u0022: \u0022MSI\u0022, \u0022Context.Default.AzureCLI.InvokeTimeElapsed\u0022: \u00221.687036\u0022, \u0022Context.Default.AzureCLI.Locale\u0022: \u0022English_United States,1252\u0022, \u0022Context.Default.AzureCLI.Mode\u0022: \u0022default\u0022, \u0022Context.Default.AzureCLI.OutputType\u0022: \u0022json\u0022, \u0022Context.Default.AzureCLI.Params\u0022: \u0022--output,--subscription,-g,-n,--query\u0022, \u0022Context.Default.AzureCLI.PollEndTime\u0022: \u0022None\u0022, \u0022Context.Default.AzureCLI.PollStartTime\u0022: \u0022None\u0022, \u0022Context.Default.AzureCLI.PythonVersion\u0022: \u00223.11.7\u0022, \u0022Context.Default.AzureCLI.RawCommand\u0022: \u0022cognitiveservices account deployment list\u0022, \u0022Context.Default.AzureCLI.ShellType\u0022: \u0022cmd\u0022, \u0022Context.Default.AzureCLI.ShowSurveyMessage\u0022: \u0022False\u0022, \u0022Context.Default.AzureCLI.Source\u0022: \u0022az\u0022, \u0022Context.Default.AzureCLI.StartTime\u0022: \u00222024-02-12 01:09:57.837472\u0022, \u0022Context.Default.AzureCLI.TelemetryVersion\u0022: \u00222.0\u0022, \u0022Context.Default.AzureCLI.UserAzureId\u0022: \u00225f410ad1fc24a4547edd18a29584bf5c7572c48978dd5c8cd5fa93e771db858f\u0022, \u0022Context.Default.AzureCLI.UserAzureSubscriptionId\u0022: \u0022a18897a6-7e44-457d-9260-f2854c0aca42\u0022, \u0022Context.Default.AzureCLI.debug_info\u0022: \u0022\u0022, \u0022Context.Default.AzureCLI.error_type\u0022: \u0022None\u0022, \u0022Context.Default.AzureCLI.exception_name\u0022: \u0022None\u0022, \u0022Context.Default.VS.Core.Distro.Id\u0022: \u0022\u0022, \u0022Context.Default.VS.Core.Distro.Name\u0022: \u0022\u0022, \u0022Context.Default.VS.Core.Distro.Version\u0022: \u0022\u0022, \u0022Context.Default.VS.Core.ExeName\u0022: \u0022azurecli\u0022, \u0022Context.Default.VS.Core.ExeVersion\u0022: \u00222.57.0@none\u0022, \u0022Context.Default.VS.Core.MacAddressHash\u0022: \u0022a1a9745e6932c20d63d29c7e0eeb778b2420c595247a087002a4dd921b854b1e\u0022, \u0022Context.Default.VS.Core.Machine.Id\u0022: \u0022a1a9745e-6932-c20d-63d2-9c7e0eeb778b\u0022, \u0022Context.Default.VS.Core.OS.Platform\u0022: \u0022windows-10-10.0.22631-sp0\u0022, \u0022Context.Default.VS.Core.OS.Type\u0022: \u0022windows\u0022, \u0022Context.Default.VS.Core.OS.Version\u0022: \u002210.0.22631\u0022, \u0022Context.Default.VS.Core.TelemetryApi.ProductVersion\u0022: \u0022azurecli@2.57.0\u0022, \u0022Context.Default.VS.Core.User.Id\u0022: \u002255059476-d0fd-11ed-8796-c8d9d2049b34\u0022, \u0022Context.Default.VS.Core.User.IsMicrosoftInternal\u0022: \u0022False\u0022, \u0022Context.Default.VS.Core.User.IsOptedIn\u0022: \u0022True\u0022, \u0022Reserved.ChannelUsed\u0022: \u0022AI\u0022, \u0022Reserved.DataModel.Action.Result\u0022: \u0022Success\u0022, \u0022Reserved.DataModel.Action.Type\u0022: \u0022Atomic\u0022, \u0022Reserved.DataModel.CorrelationId\u0022: \u0022d1dd9f14-4d09-4efe-b05c-89d167fddd5d\u0022, \u0022Reserved.DataModel.EntityName\u0022: \u0022cognitiveservices-account-deployment-list\u0022, \u0022Reserved.DataModel.EntityType\u0022: \u0022UserTask\u0022, \u0022Reserved.DataModel.FeatureName\u0022: \u0022command\u0022, \u0022Reserved.DataModel.ProductName\u0022: \u0022azurecli\u0022, \u0022Reserved.DataModel.Source\u0022: \u0022DataModelAPI\u0022, \u0022Reserved.EventId\u0022: \u0022058d9031-0a54-4c92-bfe6-f7bdd28b22a3\u0022, \u0022Reserved.SessionId\u0022: \u0022e6a240fa59b64d77c5d8ab8c583d455a616ae6cc3104c7b2bfd5194d180c265e\u0022}, \u0022measurements\u0022: {\u0022Reserved.DataModel.EntitySchemaVersion\u0022: 4, \u0022Reserved.DataModel.Severity\u0022: 0, \u0022Reserved.SequenceNumber\u0022: 1, \u0022Reserved.TimeSinceSessionStart\u0022: 0}}}}]", + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "close", + "Content-Length": "49", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:10:00 GMT", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "itemsReceived": 1, + "itemsAccepted": 1, + "errors": [] + } + }, + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2/listKeys?api-version=2023-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account keys list", + "Connection": "close", + "Content-Length": "0", + "ParameterSetName": "--output --subscription -g -n", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "724254bb-c943-11ee-97b6-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "45", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 12 Feb 2024 01:10:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20", + "x-ms-correlation-request-id": "9e8dd591-cff5-4852-b5d7-aeb76af71aac", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "38b1e6bf-3ef5-4e9a-a279-44a935771db2", + "x-ms-routing-request-id": "WESTUS2:20240212T011002Z:9e8dd591-cff5-4852-b5d7-aeb76af71aac", + "X-MSEdge-Ref": "Ref A: 6E1836A6E7B64A6E85123452B4468882 Ref B: CO6AA3150217009 Ref C: 2024-02-12T01:10:01Z" + }, + "ResponseBody": { + "key1": "COGSVCSKey1", + "key2": "COGSVCSKey2" + } + } + ], + "Variables": {} +} diff --git a/tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init speech.json b/tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init speech.json new file mode 100644 index 00000000..6974af16 --- /dev/null +++ b/tests/recordings/yaml.ai_chat_tests.ai init.TestCases.ai init speech.json @@ -0,0 +1,42115 @@ +{ + "Entries": [ + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/providers/Microsoft.CognitiveServices/accounts?api-version=2023-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account list", + "Connection": "close", + "ParameterSetName": "--output --subscription --resource-group --query", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "732b7035-c92f-11ee-8469-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "769472", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 11 Feb 2024 22:46:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e5633092-136f-4a3c-8b24-e1064c20423d", + "x-ms-original-request-ids": [ + "948b00c7-d581-4e61-9ed3-e24d77dca6ad", + "9bb4dead-86e1-4d41-b043-1f42ff39bd31", + "63594dfd-5d4c-48d1-ae30-55d1975e33b4", + "bf35264a-f5b7-4152-ad2c-6b0042ff640b", + "47cff1dd-7da4-4f9f-8dc1-5d68cb346c40", + "17f70b7e-93ab-4159-b4f1-a8c84ae5d893", + "82e831bb-7d98-4692-a629-7741398a127e", + "156e3e97-b5a5-41b0-8653-93647bfed9ee", + "17f01be5-8a3c-4a2e-90e6-9d99b2c381a2", + "962a03a0-4a36-4866-9d97-b08fbc68cba5", + "95f72fc6-9250-45c5-8cad-7c938bffb689", + "60132a18-697e-4c67-8d12-3c072e9993b0", + "afcd278f-234b-488c-8f26-c256386454a3" + ], + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "e5633092-136f-4a3c-8b24-e1064c20423d", + "x-ms-routing-request-id": "WESTUS2:20240211T224655Z:e5633092-136f-4a3c-8b24-e1064c20423d", + "X-MSEdge-Ref": "Ref A: B87D42A5B5274265B39B5C3D886D8D92 Ref B: CO6AA3150219053 Ref C: 2024-02-11T22:46:54Z" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-WestUS-RG/providers/Microsoft.CognitiveServices/accounts/SpeechSDK-AAD-WestUS", + "name": "SpeechSDK-AAD-WestUS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022430128b3-0000-0700-0000-63505b4b0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "8603d33e333a4fff960651edd772a90b", + "dateCreated": "2021-06-16T17:46:04.0616047Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "speechsdk-aad-westus", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Video Translation": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://speechsdk-aad-westus.cognitiveservices.azure.com/", + "Token": "https://speechsdk-aad-westus.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-16T17:46:03.9951413Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-16T17:46:38.8689499Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-RG/providers/Microsoft.CognitiveServices/accounts/LUIS-Authoring", + "name": "LUIS-Authoring", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224301f1ba-0000-0700-0000-63505b570000\u0022", + "location": "westus", + "sku": { + "name": "F0" + }, + "kind": "LUIS.Authoring", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "77149f4ffec5478593a07ac63328ccaf", + "dateCreated": "2021-06-30T16:03:40.0984036Z", + "callRateLimit": { + "rules": [ + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + } + ], + "endpoints": { + "LUIS.Authoring": "https://westus.api.cognitive.microsoft.com/", + "LUIS": "https://westus.api.cognitive.microsoft.com/", + "Container": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-30T16:03:39.9718634Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-30T16:03:39.9718634Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/speech-sdk-dri-test/providers/Microsoft.CognitiveServices/accounts/speech-sdk-dri-test", + "name": "speech-sdk-dri-test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401c700-0000-0700-0000-63505bcd0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "d75ad1e274924fcd806b6213c69a67ba", + "dateCreated": "2021-10-12T16:26:52.46351Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-10-12T16:26:52.1751637Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-10-12T16:26:52.1751637Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-spx-luis-rg/providers/Microsoft.CognitiveServices/accounts/robch-spx-luis-predict", + "name": "robch-spx-luis-predict", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002244012932-0000-0700-0000-63505c180000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "4531dcdbb01648a495ecb8eef91d1c10", + "dateCreated": "2022-01-11T21:48:35.7005634Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus.api.cognitive.microsoft.com/", + "Container": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-01-11T21:48:35.5789783Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-01-11T21:48:35.5789783Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus-rg-610/providers/Microsoft.CognitiveServices/accounts/robch-init-westus-speech-610-610", + "name": "robch-init-westus-speech-610-610", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401285f-0000-0700-0000-63505c5d0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "8b754dcdbc40453fa5f1118217c42645", + "dateCreated": "2022-03-29T01:10:42.8917698Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-29T01:10:42.7653732Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-29T01:10:42.7653732Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-7163/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-7164", + "name": "robch-init-westus2-7164", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401a561-0000-0700-0000-63505c610000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "7c4ce28abb1a4db283e33bc78334bad5", + "dateCreated": "2022-04-02T02:18:54.391217Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:18:54.2394671Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:18:54.2394671Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-7163/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-71644", + "name": "robch-init-westus2-71644", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401a661-0000-0700-0000-63505c610000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "77adec7e279846458ce021bc321d94fa", + "dateCreated": "2022-04-02T02:20:01.3518061Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:20:01.2173583Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:20:01.2173583Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/Brianem_spx_testing/providers/Microsoft.CognitiveServices/accounts/westus", + "name": "westus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002244018ca5-0000-0700-0000-63505cc70000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "97d6fd0aa2114ef2a0ebf5ae7344e167", + "dateCreated": "2022-07-22T22:49:01.8074853Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus.api.cognitive.microsoft.com/", + "Video Translation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus.api.cognitive.microsoft.com/", + "Token": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-07-22T22:49:01.6805374Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-07-22T22:49:01.6805374Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus-demo-83/providers/Microsoft.CognitiveServices/accounts/robch-westus-vision-83", + "name": "robch-westus-vision-83", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401fcae-0000-0700-0000-63505cd50000\u0022", + "location": "westus", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus.api.cognitive.microsoft.com/", + "internalId": "a5b8135bdbc94236a9c798d8d5d8cf5d", + "dateCreated": "2022-08-03T16:44:27.033716Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus.api.cognitive.microsoft.com/", + "Container": "https://westus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-03T16:44:26.862693Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-03T16:44:26.862693Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/CICD_Resources/providers/Microsoft.CognitiveServices/accounts/CICDPredictionResourceAuthoring-Authoring", + "name": "CICDPredictionResourceAuthoring-Authoring", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224401bfb0-0000-0700-0000-63505cd70000\u0022", + "location": "westus", + "sku": { + "name": "F0" + }, + "kind": "LUIS.Authoring", + "tags": {}, + "properties": { + "endpoint": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/", + "internalId": "c4b23d09bf2041909e33a2464f016c9d", + "dateCreated": "2022-08-05T15:44:47.736659Z", + "callRateLimit": { + "rules": [ + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cicdpredictionresourceauthoring-authoring", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + } + ], + "endpoints": { + "LUIS.Authoring": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/", + "LUIS": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/", + "Container": "https://cicdpredictionresourceauthoring-authoring.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-05T15:44:47.4751368Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-05T15:44:47.4751368Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/Carbon-Unified-Vision-RG/providers/Microsoft.CognitiveServices/accounts/carbon-vision-2", + "name": "carbon-vision-2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227001a3fc-0000-0700-0000-647e1bb40000\u0022", + "location": "westus", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://carbon-vision-2.cognitiveservices.azure.com/", + "internalId": "203d6bc3139843fea24621ae779af734", + "dateCreated": "2023-01-04T15:35:01.8278618Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "carbon-vision-2", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://carbon-vision-2.cognitiveservices.azure.com/", + "Container": "https://carbon-vision-2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-01-04T15:35:01.0040803Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-01-04T15:35:01.0040803Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brianem-funny-pink-orca-rg/providers/Microsoft.CognitiveServices/accounts/brianem-funny-pink-orca-ais", + "name": "brianem-funny-pink-orca-ais", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e603697a-0000-0700-0000-6555168e0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "internalId": "244b15375f714e169fb922301736b1d6", + "dateCreated": "2023-11-15T19:05:43.0381486Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "brianem-funny-pink-orca-ais", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "OpenAI Dall-E API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "OpenAI Whisper API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "OpenAI Model Scaleset API": "https://brianem-funny-pink-orca-ais.openai.azure.com/", + "Content Safety": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Video Translation": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/", + "Token": "https://brianem-funny-pink-orca-ais.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-15T19:05:41.6810511Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-15T19:05:41.6810511Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/jhakulin-kind-blue-lynx-rg/providers/Microsoft.CognitiveServices/accounts/jhakulin-kind-blue-lynx-ai-aiservices", + "name": "jhakulin-kind-blue-lynx-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225e0bce35-0000-0700-0000-65734c160000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "internalId": "f338f91f174b489f83aafdf6c18d2a1d", + "dateCreated": "2023-12-08T17:02:06.358564Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-kind-blue-lynx-ai-aiservices1452303482", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.openai.azure.com/", + "Content Safety": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/", + "Token": "https://jhakulin-kind-blue-lynx-ai-aiservices1452303482.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7d92a9a4-522d-40c3-a05e-a46541457a65", + "createdByType": "Application", + "createdAt": "2023-12-08T17:02:04.9094496Z", + "lastModifiedBy": "7d92a9a4-522d-40c3-a05e-a46541457a65", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-08T17:02:04.9094496Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/chschraeDev/providers/Microsoft.CognitiveServices/accounts/ai-service-chschrae-westus-001", + "name": "ai-service-chschrae-westus-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228b0b619d-0000-0700-0000-6577977c0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "internalId": "b5bc03c926064740b305be6211b642e7", + "dateCreated": "2023-12-11T23:12:58.9953914Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-service-chschrae-westus-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Spell Check": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Entity Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Image Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing News Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Video Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Web Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Visual Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Bing Custom Search": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Face": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Computer Vision": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Container": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Text Analytics": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Custom Question Answering": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Language": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "QnAMaker": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Turing": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "QuestionAnswering": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "LUIS": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Unified Speech": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator Client": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "DocumentTranslation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Token": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Video Translation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/", + "FormRecognizer": "https://ai-service-chschrae-westus-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T23:12:58.6823174Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T23:12:58.6823174Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/chschraeDev/providers/Microsoft.CognitiveServices/accounts/openai-chschrae-westus-001", + "name": "openai-chschrae-westus-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228b0ba4ba-0000-0700-0000-65779a260000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-chschrae-westus-001.openai.azure.com/", + "internalId": "b1487800ab114673803d59e8375f8f51", + "dateCreated": "2023-12-11T23:14:47.5939236Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-chschrae-westus-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-chschrae-westus-001.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-chschrae-westus-001.openai.azure.com/", + "OpenAI Whisper API": "https://openai-chschrae-westus-001.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-chschrae-westus-001.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T23:14:47.2042573Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T23:14:47.2042573Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-test-azure-ai-westus-aiservices", + "name": "ralphe-test-azure-ai-westus-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022a80b4cb5-0000-0700-0000-659e358b0000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "internalId": "aa30c8b643bc4553a1bbcb165cee9e6b", + "dateCreated": "2024-01-10T06:07:50.6782469Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-test-azure-ai-westus-aiservices534256510", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-test-azure-ai-westus-aiservices534256510.openai.azure.com/", + "Content Safety": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/", + "Token": "https://ralphe-test-azure-ai-westus-aiservices534256510.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "6547f4a0-edb5-47c5-a209-224f64490619", + "createdByType": "Application", + "createdAt": "2024-01-10T06:07:49.3651025Z", + "lastModifiedBy": "6547f4a0-edb5-47c5-a209-224f64490619", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-10T06:07:49.3651025Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/test/providers/Microsoft.CognitiveServices/accounts/test", + "name": "test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227e017fd4-0000-0700-0000-65b2cb500000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://test.openai.azure.com/", + "provisioningState": "Failed", + "internalId": "bc03e1d379fa4e96be8b60c1fa35a758", + "dateCreated": "2024-01-25T20:57:19.1430948Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "test", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://test.openai.azure.com/", + "OpenAI Dall-E API": "https://test.openai.azure.com/", + "OpenAI Whisper API": "https://test.openai.azure.com/", + "OpenAI Model Scaleset API": "https://test.openai.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-25T20:57:18.9223306Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-25T20:57:18.9223306Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/krpratic-test-embeddings", + "name": "krpratic-test-embeddings", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220b003a24-0000-0700-0000-65c54c650000\u0022", + "location": "westus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://krpratic-test-embeddings.openai.azure.com/", + "internalId": "9ead01f0399c493caf382a8c45a1b5c6", + "dateCreated": "2024-02-08T21:00:48.4003548Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "krpratic-test-embeddings", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://krpratic-test-embeddings.openai.azure.com/", + "OpenAI Dall-E API": "https://krpratic-test-embeddings.openai.azure.com/", + "OpenAI Whisper API": "https://krpratic-test-embeddings.openai.azure.com/", + "OpenAI Model Scaleset API": "https://krpratic-test-embeddings.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-02-08T21:00:47.4468677Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-02-08T21:00:47.4468677Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-speech-westus2", + "name": "rhurey-speech-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800542f-0000-0800-0000-638270fe0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "3ca72bc27d3344c7a87a9a324c340293", + "dateCreated": "2019-10-24T19:48:11.1235345Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-samsung-speech", + "name": "rhurey-samsung-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278005330-0000-0800-0000-638271080000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "78e6c9e5d1fb42e389d5954164d0d324", + "dateCreated": "2019-11-08T02:23:57.3852616Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-rg-uswest2/providers/Microsoft.CognitiveServices/accounts/rhurey-samsung-scale", + "name": "rhurey-samsung-scale", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278004031-0000-0800-0000-638271120000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "413d0c363f954816b67e893cbcc71ae2", + "dateCreated": "2019-11-20T04:47:05.5577525Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-LUIS", + "name": "rhurey-LUIS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278008432-0000-0800-0000-638271210000\u0022", + "location": "westus2", + "sku": { + "name": "F0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "2dc4706bc3844ba1b1ad74bc3b1025d8", + "dateCreated": "2019-12-12T21:10:44.1783195Z", + "callRateLimit": { + "rules": [ + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-rg-uswest2/providers/Microsoft.CognitiveServices/accounts/rhurey-LUIS", + "name": "rhurey-LUIS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278008632-0000-0800-0000-638271210000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b97c7c038508498383aad5bf935eac99", + "dateCreated": "2019-12-12T21:16:09.620435Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-scaletest/providers/Microsoft.CognitiveServices/accounts/rhurey-luis-westus2", + "name": "rhurey-luis-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278008f32-0000-0800-0000-638271210000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "6e830296f25149a8877af88f845e2ef8", + "dateCreated": "2019-12-13T01:12:14.0351452Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-AAD-RG/providers/Microsoft.CognitiveServices/accounts/rhurey-AAD", + "name": "rhurey-AAD", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800495e-0000-0800-0000-638273b20000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "d9d1fadf1d1b4bfd9944792556ba1b59", + "dateCreated": "2021-06-11T16:23:21.5918864Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "rhurey-aad-test", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Video Translation": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://rhurey-aad-test.cognitiveservices.azure.com/", + "Token": "https://rhurey-aad-test.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-11T16:23:21.4796795Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-11T16:34:20.4989408Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-rg-tw/providers/Microsoft.CognitiveServices/accounts/rhurey-tw", + "name": "rhurey-tw", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278002f65-0000-0800-0000-6382741d0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "4aa6b8413afa4a578cf58f9b7c26682d", + "dateCreated": "2021-08-22T18:19:29.4900619Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-08-22T18:19:29.4306758Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-08-22T18:19:29.4306758Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision", + "name": "robch-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001c69-0000-0800-0000-6382745a0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://robch-vision.cognitiveservices.azure.com/", + "internalId": "9616f4f8cabe4961911d16eb9e2504d2", + "dateCreated": "2021-10-03T17:16:04.9167117Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-vision", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://robch-vision.cognitiveservices.azure.com/", + "Container": "https://robch-vision.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-10-03T17:16:04.7886425Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-10-03T17:16:04.7886425Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-westus2-speech", + "name": "robch-westus2-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001d80-0000-0800-0000-638275900000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b6ad8a30c35f4c09ad50eaf4891bccdc", + "dateCreated": "2022-03-18T21:03:32.0694205Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-18T21:03:32.018167Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-18T21:03:32.018167Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-2-westus2-speech", + "name": "robch-2-westus2-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001e80-0000-0800-0000-638275900000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "provisioningState": "Succeeded", + "internalId": "ee04283df37b4317a05e2ab4d21456bd", + "dateCreated": "2022-03-18T21:11:50.1994213Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-18T21:11:50.0356746Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-18T21:20:02.8071988Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-2-westus2-vision", + "name": "robch-2-westus2-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001f80-0000-0800-0000-638275900000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b00a629637414fe79f285aef9058919b", + "dateCreated": "2022-03-18T21:27:55.2907845Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-18T21:27:55.1369127Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-18T21:27:55.1369127Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-2-westus2-face", + "name": "robch-2-westus2-face", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278005880-0000-0800-0000-638275930000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "3d643b01d0fa43d68ba5397483f7b120", + "dateCreated": "2022-03-22T00:04:09.5167904Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-22T00:04:09.4636089Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-22T00:04:09.4636089Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-3d-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-3d-westus2-face", + "name": "robch-3d-westus2-face", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278005980-0000-0800-0000-638275940000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "6a9c6180a2fe40509115eaf5fb1ae80d", + "dateCreated": "2022-03-22T00:27:22.6364645Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-22T00:27:22.5486476Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-22T00:27:22.5486476Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/cls", + "name": "cls", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800f780-0000-0800-0000-6382759a0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b30d1168acea49788ffc68e32ce5c958", + "dateCreated": "2022-03-27T19:19:28.2405197Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-27T19:19:28.1317333Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-27T19:19:28.1317333Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-test-demo-1147/providers/Microsoft.CognitiveServices/accounts/robch-init-test-demo-speech-1147", + "name": "robch-init-test-demo-speech-1147", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800b581-0000-0800-0000-638275a10000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "c7cef4a26be147ba9bd7362f0e5d3af6", + "dateCreated": "2022-03-31T18:47:31.756689Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-31T18:47:31.6374805Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-31T18:47:31.6374805Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-543/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-543", + "name": "robch-init-westus2-speech-543", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800c481-0000-0800-0000-638275a20000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "c991127961ab47e18738155f0dcc36a5", + "dateCreated": "2022-04-01T00:44:04.7671025Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-01T00:44:04.623455Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-01T00:44:04.623455Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-549/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-549", + "name": "robch-init-westus2-speech-549", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800cb81-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "3be67bec93014c169ffe879b9cee039a", + "dateCreated": "2022-04-01T12:49:54.3532528Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-01T12:49:54.2312923Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-01T12:49:54.2312923Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-645645/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-645645", + "name": "robch-init-westus2-645645", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800df81-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "7e5d408980234de6aacfd3317663aeba", + "dateCreated": "2022-04-02T01:46:10.6760643Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T01:46:10.6189285Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T01:46:10.6189285Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-645645/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-6456", + "name": "robch-init-westus2-6456", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800e081-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "416f29c183434fc28f9aa1eb31934f93", + "dateCreated": "2022-04-02T02:07:28.7733829Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:07:28.7179272Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:07:28.7179272Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-716/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-716", + "name": "robch-init-westus2-716", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800e281-0000-0800-0000-638275a30000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "afaae703fdda4bce82f81804cc5535ec", + "dateCreated": "2022-04-02T02:17:34.9216175Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T02:17:34.7885429Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T02:17:34.7885429Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1001/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1001", + "name": "robch-init-westus2-speech-1001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ea81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "de4fbb4fde14406db63588396b86e626", + "dateCreated": "2022-04-02T17:02:15.7678658Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:02:15.691606Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:02:15.691606Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1001/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1001a", + "name": "robch-init-westus2-speech-1001a", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800eb81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "6508d050ba9342d686899343e87ed84b", + "dateCreated": "2022-04-02T17:03:40.4691899Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:03:40.3076458Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:03:40.3076458Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1001b/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1001b", + "name": "robch-init-westus2-speech-1001b", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ec81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "362e98c2db9a406f9b6d39e368cf76b6", + "dateCreated": "2022-04-02T17:04:12.4363593Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:04:12.3489134Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:04:12.3489134Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-543/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-speech-1011", + "name": "robch-init-westus2-speech-1011", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ed81-0000-0800-0000-638275a40000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "5d11c033630645b5a54520c4021328dd", + "dateCreated": "2022-04-02T17:11:54.1799525Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T17:11:54.1292502Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T17:11:54.1292502Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/zzz/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-107", + "name": "robch-init-westus2-107", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278000182-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "cf43f73ac0bf498c87b50006f478604c", + "dateCreated": "2022-04-02T20:07:58.2155541Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T20:07:58.1771535Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T20:07:58.1771535Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-109/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-zzz", + "name": "robch-init-westus2-zzz", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278000282-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "8ba7a4ca50e3498a974a0122b0a132b5", + "dateCreated": "2022-04-02T20:09:28.8973817Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T20:09:28.8192596Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T20:09:28.8192596Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-1099/providers/Microsoft.CognitiveServices/accounts/robch-init-westus2-zzz", + "name": "robch-init-westus2-zzz", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278000382-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "1d7134affb4442f8aa951a9785163c46", + "dateCreated": "2022-04-02T20:09:57.8560652Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-02T20:09:57.7745269Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-02T20:09:57.7745269Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-westus2-rg-543/providers/Microsoft.CognitiveServices/accounts/robch-init-unique", + "name": "robch-init-unique", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001182-0000-0800-0000-638275a50000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "e4b56c03196f44258aa59c8d0bdc9bef", + "dateCreated": "2022-04-03T20:17:33.5303559Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-03T20:17:33.4718559Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-03T20:17:33.4718559Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision-2", + "name": "robch-vision-2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800bc82-0000-0800-0000-638275ad0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "provisioningState": "Succeeded", + "internalId": "d5810cdc48504e6bb08b3095abbc12b3", + "dateCreated": "2022-04-08T02:14:30.5146287Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T02:14:30.4295672Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T02:14:36.4383044Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision-3", + "name": "robch-vision-3", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800bd82-0000-0800-0000-638275ad0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "7cf5e42adbb2420d8e79dfe425925020", + "dateCreated": "2022-04-08T02:40:20.8600056Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T02:40:20.8078914Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T02:40:20.8078914Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-init-test-demo-1147/providers/Microsoft.CognitiveServices/accounts/robch-init-test-demo-1147-944", + "name": "robch-init-test-demo-1147-944", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800ca82-0000-0800-0000-638275ad0000\u0022", + "location": "westus2", + "sku": { + "name": "F0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "898603b8d3ef45fca85fe4362efd3354", + "dateCreated": "2022-04-08T16:44:04.5983145Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T16:44:04.4466229Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T16:44:04.4466229Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/form-reco-1-rg/providers/Microsoft.CognitiveServices/accounts/form-reco-1", + "name": "form-reco-1", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278009c83-0000-0800-0000-638275b60000\u0022", + "location": "WESTUS2", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "8a1daf680a644a08ac289c2d5f6ef095", + "dateCreated": "2022-04-14T16:37:17.174664Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-14T16:37:17.1115861Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-14T16:37:17.1115861Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vision-westus2-face-427", + "name": "robch-vision-westus2-face-427", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800fb85-0000-0800-0000-638275cc0000\u0022", + "location": "westus2", + "sku": { + "name": "F0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "efacd8a966094672928f553db906c913", + "dateCreated": "2022-04-27T23:43:39.3036472Z", + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-27T23:43:39.1783182Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-27T23:43:39.1783182Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-349", + "name": "robch-vz-init-test-5-6-349", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006a87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "4f1def61710e4de7b1f13f5e1c746411", + "dateCreated": "2022-05-06T22:49:58.0687382Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T22:49:57.9969896Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T22:49:57.9969896Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-351", + "name": "robch-vz-init-test-5-6-351", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006b87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "0802d02eb14e4bb0bef99c21ea056ae4", + "dateCreated": "2022-05-06T22:51:09.3626984Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T22:51:09.3045285Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T22:51:09.3045285Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-424", + "name": "robch-vz-init-test-5-6-424", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006d87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "5878b1c0674e426494ad4347affd7566", + "dateCreated": "2022-05-06T23:25:09.6095721Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:25:09.5314732Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:25:09.5314732Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-426", + "name": "robch-vz-init-test-5-6-426", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006e87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "provisioningState": "Succeeded", + "internalId": "250d855fd2324b94b877f78fe1fc0ec6", + "dateCreated": "2022-05-06T23:27:07.6308187Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:27:07.5624267Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:27:21.7934065Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-427", + "name": "robch-vz-init-test-5-6-427", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278006f87-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "f73ce2c399ff423b8247e36528ae5c6d", + "dateCreated": "2022-05-06T23:27:43.4631999Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:27:43.4133208Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:27:43.4133208Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-428", + "name": "robch-vz-init-test-5-6-428", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007087-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "a63d57c7e9c040408bde9e8ddc115bfc", + "dateCreated": "2022-05-06T23:28:55.445756Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:28:55.372692Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:28:55.372692Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-432", + "name": "robch-vz-init-test-5-6-432", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007187-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "2234640f6c7a43419a5a5db509cf943d", + "dateCreated": "2022-05-06T23:32:45.954376Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:32:45.9083729Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:32:45.9083729Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-433", + "name": "robch-vz-init-test-5-6-433", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007287-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "a12fd291e78e4774a208867ca099fe5b", + "dateCreated": "2022-05-06T23:34:16.4140036Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:34:16.2957152Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:34:16.2957152Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-434", + "name": "robch-vz-init-test-5-6-434", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007387-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "af96143b683043e6ba783977b8fdd76b", + "dateCreated": "2022-05-06T23:36:59.6973178Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:36:59.5912446Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:36:59.5912446Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-445", + "name": "robch-vz-init-test-5-6-445", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007487-0000-0800-0000-638275db0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b72b0db851da46ab9481b004a59a4376", + "dateCreated": "2022-05-06T23:45:52.1048793Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:45:51.9735217Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:45:51.9735217Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-vision/providers/Microsoft.CognitiveServices/accounts/robch-vz-init-test-5-6-446", + "name": "robch-vz-init-test-5-6-446", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007587-0000-0800-0000-638275dc0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "Face", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "12eea5ad8f6448368114e1bf73247fcb", + "dateCreated": "2022-05-06T23:46:50.8753399Z", + "callRateLimit": { + "rules": [ + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-06T23:46:50.8068509Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-06T23:46:50.8068509Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brianem-usw2/providers/Microsoft.CognitiveServices/accounts/brianem-speech", + "name": "brianem-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278001789-0000-0800-0000-638275ec0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "34ca4887c2a440719e8c20bba915fff4", + "dateCreated": "2022-05-18T22:56:40.5865946Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-05-18T22:56:40.5258897Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-05-18T22:56:40.5258897Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-face-rg/providers/Microsoft.CognitiveServices/accounts/rhurey-vision", + "name": "rhurey-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227800cf94-0000-0800-0000-638276690000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "629dbf1c1a8d4f638fbb2a98c4072ac3", + "dateCreated": "2022-08-31T18:55:14.4183185Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "customvision.training", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "customvision/v3.0/training/*", + "method": "*" + }, + { + "path": "customvision/v3.1/training/*", + "method": "*" + }, + { + "path": "customvision/v3.2/training/*", + "method": "*" + }, + { + "path": "customvision/v3.3/training/*", + "method": "*" + }, + { + "path": "customvision/v3.4-preview/training/*", + "method": "*" + } + ] + }, + { + "key": "customvision.prediction", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "customvision/v3.0/prediction/*", + "method": "*" + }, + { + "path": "customvision/v3.1/prediction/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://westus2.api.cognitive.microsoft.com/", + "Bing Spell Check": "https://westus2.api.cognitive.microsoft.com/", + "Bing Entity Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Image Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing News Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Video Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Web Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Visual Search": "https://westus2.api.cognitive.microsoft.com/", + "Bing Custom Search": "https://westus2.api.cognitive.microsoft.com/", + "Face": "https://westus2.api.cognitive.microsoft.com/", + "Computer Vision": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/", + "Text Analytics": "https://westus2.api.cognitive.microsoft.com/", + "Custom Text Authoring": "https://westus2.api.cognitive.microsoft.com/", + "Conversational Language Understanding Authoring": "https://westus2.api.cognitive.microsoft.com/", + "Custom Question Answering Authoring": "https://westus2.api.cognitive.microsoft.com/", + "Custom Question Answering": "https://westus2.api.cognitive.microsoft.com/", + "ConversationalLURuntime": "https://westus2.api.cognitive.microsoft.com/", + "Language": "https://westus2.api.cognitive.microsoft.com/", + "QnAMaker": "https://westus2.api.cognitive.microsoft.com/", + "Turing": "https://westus2.api.cognitive.microsoft.com/", + "QuestionAnswering": "https://westus2.api.cognitive.microsoft.com/", + "LUIS": "https://westus2.api.cognitive.microsoft.com/", + "Unified Speech": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator - Review": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator - Moderate": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator Client": "https://westus2.api.cognitive.microsoft.com/", + "Content Moderator - List Management": "https://westus2.api.cognitive.microsoft.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://westus2.api.cognitive.microsoft.com/", + "DocumentTranslation": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.0": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.1": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.1": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.2": "https://westus2.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.3": "https://westus2.api.cognitive.microsoft.com/", + "FormRecognizer": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-31T18:55:14.3394565Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-31T18:55:14.3394565Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/macaroni-rg/providers/Microsoft.CognitiveServices/accounts/robch-translator-westus2", + "name": "robch-translator-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278007696-0000-0800-0000-638276790000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "TextTranslation", + "tags": {}, + "properties": { + "endpoint": "https://api.cognitive.microsofttranslator.com/", + "internalId": "fe540c8a8e5440f29cdca33111145b44", + "dateCreated": "2022-09-14T19:58:54.0228815Z", + "callRateLimit": { + "rules": [ + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-translator-westus2", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "NetworkSecurityPerimeter" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "TextTranslation.*" + } + ], + "endpoints": { + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://robch-translator-westus2.cognitiveservices.azure.com/", + "DocumentTranslation": "https://robch-translator-westus2.cognitiveservices.azure.com/", + "Token": "https://robch-translator-westus2.cognitiveservices.azure.com/", + "Container": "https://robch-translator-westus2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-09-14T19:58:53.2339928Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-09-14T19:58:53.2339928Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/macaroni-rg/providers/Microsoft.CognitiveServices/accounts/macaroni-speech-usw2", + "name": "macaroni-speech-usw2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278003399-0000-0800-0000-638276930000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "tags": {}, + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "a2210d5e91ac43bca936a42562277b4e", + "dateCreated": "2022-10-01T05:41:12.2619965Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-10-01T05:41:12.1959688Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-10-01T05:41:12.1959688Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/new-speech-bert-team-demo", + "name": "new-speech-bert-team-demo", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002278002b9a-0000-0800-0000-6382769c0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "656112bd20664554887c016c48e1f54a", + "dateCreated": "2022-10-07T18:33:52.9298316Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westus2.api.cognitive.microsoft.com/", + "Video Translation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westus2.api.cognitive.microsoft.com/", + "Token": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-10-07T18:33:52.793572Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-10-07T18:33:52.793572Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-2-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-clu-westus2", + "name": "robch-clu-westus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224900fe9c-0000-0800-0000-648cc3f10000\u0022", + "location": "westus2", + "sku": { + "name": "S" + }, + "kind": "TextAnalytics", + "tags": {}, + "properties": { + "endpoint": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "internalId": "ab0c722d57ae40f1ae23188c944e5c61", + "dateCreated": "2023-06-16T20:19:29.1378431Z", + "apiProperties": { + "qnaAzureSearchEndpointKey": null + }, + "callRateLimit": { + "rules": [ + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "quotaLimit": { + "rules": [ + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 2592000, + "count": 100000, + "matchPatterns": [ + { + "path": "/language/:analyze-conversations", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-clu-westus2", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "CustomerManagedStorage" + }, + { + "name": "Container", + "value": "TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis" + } + ], + "endpoints": { + "Text Analytics": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Custom Question Answering": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Language": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "QnAMaker": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Turing": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "QuestionAnswering": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "LUIS": "https://robch-clu-westus2.cognitiveservices.azure.com/", + "Container": "https://robch-clu-westus2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "principalId": "c88ee174-b73f-43e0-ae0d-c49b719d6aa0", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-06-16T20:19:28.3485433Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-06-16T20:19:28.3485433Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-westus2-formrec", + "name": "robch-westus2-formrec", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221400c9e0-0000-0800-0000-64bed4d90000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "tags": {}, + "properties": { + "endpoint": "https://westus2.api.cognitive.microsoft.com/", + "internalId": "b65d05a4214f471691548e006bdc8b1c", + "dateCreated": "2023-07-24T19:45:28.7139839Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://westus2.api.cognitive.microsoft.com/", + "Container": "https://westus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-07-24T19:45:28.6819533Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-07-24T19:45:28.6819533Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-vision/providers/Microsoft.CognitiveServices/accounts/rhurey-vision", + "name": "rhurey-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220000a383-0000-0800-0000-64fb5da80000\u0022", + "location": "westus2", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://rhurey-vision.cognitiveservices.azure.com/", + "internalId": "fac3279f40384dd9b66c8d2b50ae7415", + "dateCreated": "2023-09-08T17:45:11.4028052Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "rhurey-vision", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://rhurey-vision.cognitiveservices.azure.com/", + "Container": "https://rhurey-vision.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-08T17:45:10.7393179Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-08T17:45:10.7393179Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/chschraeDev/providers/Microsoft.CognitiveServices/accounts/openai-westus2-chschrae-001", + "name": "openai-westus2-chschrae-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227001bd08-0000-0800-0000-6577901e0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "internalId": "13b51b1eca9841dd84381be047c73675", + "dateCreated": "2023-12-11T22:41:27.0998503Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-westus2-chschrae-001", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "OpenAI Whisper API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-westus2-chschrae-001.openai.azure.com/", + "Content Safety": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Video Translation": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/", + "Token": "https://openai-westus2-chschrae-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-11T22:41:25.4339137Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-11T22:41:25.4339137Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulinaiwu2/providers/Microsoft.CognitiveServices/accounts/jhakulin-ai-wu2-aiservices", + "name": "jhakulin-ai-wu2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e9021dce-0000-0800-0000-659daaff0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "internalId": "22768a809b254a289805241d0626eaa4", + "dateCreated": "2024-01-09T16:11:40.836963Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-ai-wu2-aiservices-1199220910", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-ai-wu2-aiservices-1199220910.openai.azure.com/", + "Content Safety": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/", + "Token": "https://jhakulin-ai-wu2-aiservices-1199220910.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "80bbe0b2-4c4e-47f8-865f-f85d4076b838", + "createdByType": "Application", + "createdAt": "2024-01-09T16:11:39.1610012Z", + "lastModifiedBy": "80bbe0b2-4c4e-47f8-865f-f85d4076b838", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-09T16:11:39.1610012Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-test-20230810-ais", + "name": "ralphe-test-20230810-ais", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ed02c321-0000-0800-0000-659e2e240000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "internalId": "4a71f4c7878e4cd1a38aa2666d20c631", + "dateCreated": "2024-01-10T05:41:49.0681984Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-test-20230810-ais", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-test-20230810-ais.openai.azure.com/", + "Content Safety": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/", + "Token": "https://ralphe-test-20230810-ais.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-10T05:41:47.4851745Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-10T05:41:47.4851745Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulin-wu2/providers/Microsoft.CognitiveServices/accounts/jhakulin-wu2-csa", + "name": "jhakulin-wu2-csa", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222600c30d-0000-0800-0000-65a807a90000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "internalId": "1317704b25ee425cb086377c32200a36", + "dateCreated": "2024-01-17T16:58:43.1198405Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-wu2-csa", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-wu2-csa.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-wu2-csa.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-wu2-csa.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-wu2-csa.openai.azure.com/", + "Content Safety": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/", + "Token": "https://jhakulin-wu2-csa.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-17T16:58:41.5586771Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-17T16:58:41.5586771Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulinaiwestus2/providers/Microsoft.CognitiveServices/accounts/jhakulin-ai-westus2-aiservices", + "name": "jhakulin-ai-westus2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002227002ced-0000-0800-0000-65a97b6c0000\u0022", + "location": "westus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "internalId": "5f71d03b9e2e456bac469e7f9c45e0a0", + "dateCreated": "2024-01-18T19:24:22.86299Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-ai-westus2-aiservices1827254279", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-ai-westus2-aiservices1827254279.openai.azure.com/", + "Content Safety": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/", + "Token": "https://jhakulin-ai-westus2-aiservices1827254279.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "a04a5829-aa57-4d60-b5eb-a1fed82b58af", + "createdByType": "Application", + "createdAt": "2024-01-18T19:24:21.386006Z", + "lastModifiedBy": "a04a5829-aa57-4d60-b5eb-a1fed82b58af", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-18T19:24:21.386006Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/glenn-rg-test/providers/Microsoft.CognitiveServices/accounts/openAI-gharper", + "name": "openAI-gharper", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00227100affd-0000-0d00-0000-6488edf10000\u0022", + "location": "westeurope", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-gharper.openai.azure.com/", + "internalId": "a8dbdc65fcb5420fb51a80f777cbb2b8", + "dateCreated": "2022-09-07T23:12:40.7919013Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-gharper", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-gharper.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-gharper.openai.azure.com/", + "OpenAI Whisper API": "https://openai-gharper.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-gharper.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-09-07T23:12:39.7574278Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-09-07T23:12:39.7574278Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account", + "name": "openai-sdk-test-automation-account", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222300d1d6-0000-0d00-0000-652e0fee0000\u0022", + "location": "westeurope", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://sdk2319.openai.azure.com/", + "internalId": "80fb6a4f4bcc47b4bb7552992ed06df7", + "dateCreated": "2023-02-14T23:01:56.5177252Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "sdk2319", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://sdk2319.openai.azure.com/", + "OpenAI Dall-E API": "https://sdk2319.openai.azure.com/", + "OpenAI Whisper API": "https://sdk2319.openai.azure.com/", + "OpenAI Model Scaleset API": "https://sdk2319.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "createdByType": "Application", + "createdAt": "2023-02-14T23:01:51.0422773Z", + "lastModifiedBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-02-14T23:01:51.0422773Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/speech-sdk-dri-test/providers/Microsoft.CognitiveServices/accounts/cog-service-westeurope-001", + "name": "cog-service-westeurope-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220f0142d0-0000-0d00-0000-64daa0260000\u0022", + "location": "westeurope", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "internalId": "8e06d8fcec8b47b29f4e1104cb9b56bf", + "dateCreated": "2023-08-14T21:44:04.9216283Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "customvision.training", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "customvision/v3.0/training/*", + "method": "*" + }, + { + "path": "customvision/v3.1/training/*", + "method": "*" + }, + { + "path": "customvision/v3.2/training/*", + "method": "*" + }, + { + "path": "customvision/v3.3/training/*", + "method": "*" + }, + { + "path": "customvision/v3.4-preview/training/*", + "method": "*" + } + ] + }, + { + "key": "customvision.prediction", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "customvision/v3.0/prediction/*", + "method": "*" + }, + { + "path": "customvision/v3.1/prediction/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-service-westeurope-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Spell Check": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Entity Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Image Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing News Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Video Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Web Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Visual Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Bing Custom Search": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Face": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Computer Vision": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Container": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Text Analytics": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom Question Answering": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Language": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "QnAMaker": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Turing": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "QuestionAnswering": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "LUIS": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Unified Speech": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator Client": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "DocumentTranslation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Token": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Video Translation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westeurope.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westeurope.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Prediction_3.0": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Prediction_3.1": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Training_3.1": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Training_3.2": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "Custom_Vision_Training_3.3": "https://cog-service-westeurope-001.cognitiveservices.azure.com/", + "FormRecognizer": "https://cog-service-westeurope-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-08-14T21:44:04.010595Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-14T21:44:04.010595Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-speech-free-westeurope", + "name": "ralphe-speech-free-westeurope", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220900f55a-0000-0d00-0000-6543bd550000\u0022", + "location": "westeurope", + "sku": { + "name": "F0" + }, + "kind": "SpeechServices", + "tags": {}, + "properties": { + "endpoint": "https://westeurope.api.cognitive.microsoft.com/", + "internalId": "febef218a61c495391175f5e25efb06d", + "dateCreated": "2023-11-02T15:16:37.1670635Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westeurope.api.cognitive.microsoft.com/", + "Video Translation": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westeurope.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westeurope.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westeurope.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westeurope.api.cognitive.microsoft.com/", + "Token": "https://westeurope.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-02T15:16:36.592588Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-02T15:16:36.592588Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/speech-sdk-dri-test/providers/Microsoft.CognitiveServices/accounts/cog-service-eastasia-001", + "name": "cog-service-eastasia-001", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220000d83c-0000-1900-0000-64dbc1ca0000\u0022", + "location": "eastasia", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "internalId": "eea21f1158cd4410ae373e7fd3221c24", + "dateCreated": "2023-08-15T18:19:52.4317454Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-service-eastasia-001", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Spell Check": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Entity Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Image Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing News Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Video Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Web Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Visual Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Bing Custom Search": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Face": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Computer Vision": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Container": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Text Analytics": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Custom Question Answering": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Language": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "QnAMaker": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Turing": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "QuestionAnswering": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "LUIS": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Unified Speech": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator Client": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "DocumentTranslation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Token": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Video Translation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastasia.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastasia.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://cog-service-eastasia-001.cognitiveservices.azure.com/", + "FormRecognizer": "https://cog-service-eastasia-001.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-08-15T18:19:51.7203882Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-15T18:19:51.7203882Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhruey-eastasia/providers/Microsoft.CognitiveServices/accounts/rhruey-speech-eastasia", + "name": "rhruey-speech-eastasia", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220b00cbcd-0000-1900-0000-652ece180000\u0022", + "location": "eastasia", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "tags": {}, + "properties": { + "endpoint": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "internalId": "8e565c3f80dd40ff9aa59258f05ed056", + "dateCreated": "2023-10-17T18:10:30.2527926Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "rhruey-speech-eastasia", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Spell Check": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Entity Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Image Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing News Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Video Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Web Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Visual Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Bing Custom Search": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Face": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Computer Vision": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Container": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Text Analytics": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Custom Text Authoring": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Conversational Language Understanding Authoring": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Custom Question Answering Authoring": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Custom Question Answering": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "ConversationalLURuntime": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Language": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "QnAMaker": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Turing": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "QuestionAnswering": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "LUIS": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Unified Speech": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator - Review": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator - Moderate": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator Client": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Content Moderator - List Management": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "DocumentTranslation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Token": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Video Translation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastasia.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastasia.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/", + "FormRecognizer": "https://rhruey-speech-eastasia.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-10-17T18:10:29.1439331Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-17T18:10:29.1439331Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-RG/providers/Microsoft.CognitiveServices/accounts/SpeechSDK-AAD", + "name": "SpeechSDK-AAD", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002215008bf5-0000-0600-0000-6360296a0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://speechsdk-aad.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "551e54600acb4abf8a79e64cc10a7bed", + "dateCreated": "2021-06-11T17:27:07.9400199Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "speechsdk-aad", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Video Translation": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://westcentralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westcentralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://speechsdk-aad.cognitiveservices.azure.com/", + "Token": "https://speechsdk-aad.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-06-11T17:27:07.7986598Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-11T17:39:10.3442415Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/SpeechSDK-AAD-RG/providers/Microsoft.CognitiveServices/accounts/SpeechSDK-AAD-Prediction", + "name": "SpeechSDK-AAD-Prediction", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221500e7f5-0000-0600-0000-6360296b0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "6dc30000c67440bdb7503311c0e75703", + "dateCreated": "2021-06-30T16:05:28.4557914Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "customSubDomainName": "speechsdk-aad-prediction", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/", + "Unified Speech": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/", + "Container": "https://speechsdk-aad-prediction.cognitiveservices.azure.com/" + } + }, + "systemData": { + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-06-30T16:51:04.9536195Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-face-rg/providers/Microsoft.CognitiveServices/accounts/rhurey-face", + "name": "rhurey-face", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221500c4f6-0000-0600-0000-6360296f0000\u0022", + "location": "westcentralus", + "sku": { + "name": "F0" + }, + "kind": "Face", + "tags": {}, + "properties": { + "endpoint": "https://rhurey-face.cognitiveservices.azure.com/", + "internalId": "c97f5686e4d5434181bd96e90f77d82d", + "dateCreated": "2021-08-31T18:20:16.0572981Z", + "customSubDomainName": "rhurey-face", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Scenario", + "value": "Face.Legacy" + } + ], + "endpoints": { + "Face": "https://rhurey-face.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-08-31T18:20:15.8597213Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-08-31T18:20:15.8597213Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/Carbon-Unified-Vision-RG/providers/Microsoft.CognitiveServices/accounts/carbon-vision", + "name": "carbon-vision", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e900e64a-0000-0600-0000-647e1bec0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S1" + }, + "kind": "ComputerVision", + "tags": {}, + "properties": { + "endpoint": "https://carbon-vision.cognitiveservices.azure.com/", + "internalId": "3e0bc1e34205482aa12471dd29b3e764", + "dateCreated": "2022-04-08T23:16:15.4616826Z", + "callRateLimit": { + "rules": [ + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "carbon-vision", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.API.Private,ComputerVision.API.1P" + }, + { + "name": "Scenario", + "value": "ComputerVision.Legacy" + } + ], + "endpoints": { + "Computer Vision": "https://carbon-vision.cognitiveservices.azure.com/", + "Container": "https://carbon-vision.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-08T23:16:15.1824955Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-08T23:16:15.1824955Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brainem_CentUS/providers/Microsoft.CognitiveServices/accounts/brianem_CentralUS", + "name": "brianem_CentralUS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022150088fd-0000-0600-0000-6360298b0000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://westcentralus.api.cognitive.microsoft.com/", + "internalId": "fcda7e2a9d3d4c8bbd79adb01cb22fc7", + "dateCreated": "2022-04-15T01:01:03.3278478Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://westcentralus.api.cognitive.microsoft.com/", + "Video Translation": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://westcentralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://westcentralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://westcentralus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://westcentralus.api.cognitive.microsoft.com/", + "Token": "https://westcentralus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-04-15T01:01:03.1918733Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-04-15T01:01:03.1918733Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/CICD_Resources/providers/Microsoft.CognitiveServices/accounts/CICD-Prediction-WestCentralUS", + "name": "CICD-Prediction-WestCentralUS", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221500b3fe-0000-0600-0000-636029900000\u0022", + "location": "westcentralus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "properties": { + "endpoint": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/", + "internalId": "991760b08a2d4392ab374b517268dc67", + "dateCreated": "2022-08-05T22:42:06.9472463Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cicd-prediction-westcentralus", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/", + "Unified Speech": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/", + "Container": "https://cicd-prediction-westcentralus.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-05T22:42:06.3202383Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-05T22:42:06.3202383Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-westus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-openai", + "name": "robch-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222801418d-0000-0500-0000-65a024b90000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://robch-openai.openai.azure.com/", + "internalId": "a3cce95049494020af517a8c890bf4f7", + "dateCreated": "2022-07-23T00:12:23.8243271Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-openai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-openai.openai.azure.com/", + "OpenAI Whisper API": "https://robch-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-openai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-07-23T00:12:23.5637158Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-07-23T00:12:23.5637158Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-southcentral-oai-rg/providers/Microsoft.CognitiveServices/accounts/robch-southcentral-oai", + "name": "robch-southcentral-oai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222500cec9-0000-0500-0000-652e4b300000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://robch-southcentral-oai.openai.azure.com/", + "internalId": "4e49fe77b12a43cc8500c8ad2310b0e4", + "dateCreated": "2022-08-08T20:19:16.4082237Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-southcentral-oai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-southcentral-oai.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-southcentral-oai.openai.azure.com/", + "OpenAI Whisper API": "https://robch-southcentral-oai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-southcentral-oai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-08T20:19:15.8928277Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-08T20:19:15.8928277Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/cog-fr-7zsbtadcut3xw", + "name": "cog-fr-7zsbtadcut3xw", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022b000a7ea-0000-0500-0000-654e39cf0000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "tags": { + "azd-env-name": "josealvar-aoai-playground", + "assignedTo": "josealvar-aoai-playground" + }, + "properties": { + "endpoint": "https://cog-fr-7zsbtadcut3xw.cognitiveservices.azure.com/", + "internalId": "206474fc851f4751a4c04f06685ed456", + "dateCreated": "2023-11-10T14:10:22.339627Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-fr-7zsbtadcut3xw", + "networkAcls": { + "defaultAction": "Allow" + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://cog-fr-7zsbtadcut3xw.cognitiveservices.azure.com/", + "Container": "https://cog-fr-7zsbtadcut3xw.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-10T14:10:21.6537803Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-10T14:10:21.6537803Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-sthcntrls-oai-rg/providers/Microsoft.CognitiveServices/accounts/ralphe-sthcntrls-oai-ai-aiservices", + "name": "ralphe-sthcntrls-oai-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002240012ab0-0000-0500-0000-65a9ce690000\u0022", + "location": "southcentralus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "internalId": "111dfe4ca41141c9b591af369ce59c41", + "dateCreated": "2024-01-19T01:20:31.2297874Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-sthcntrls-oai-ai-aiservices-1167233503", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.openai.azure.com/", + "Content Safety": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://southcentralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://southcentralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/", + "Token": "https://ralphe-sthcntrls-oai-ai-aiservices-1167233503.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "ba601961-7914-45bf-b4a9-42dca40413d3", + "createdByType": "Application", + "createdAt": "2024-01-19T01:20:16.3082503Z", + "lastModifiedBy": "ba601961-7914-45bf-b4a9-42dca40413d3", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-19T01:20:16.3082503Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-eastus/providers/Microsoft.CognitiveServices/accounts/rhurey-eastus", + "name": "rhurey-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d000d3c7-0000-0100-0000-637d32070000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "07a53eb42844467daa887118295dbe25", + "dateCreated": "2021-09-30T23:21:41.273001Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2021-09-30T23:21:41.2004921Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2021-09-30T23:21:41.2004921Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/glenn-rg-test/providers/Microsoft.CognitiveServices/accounts/glenn-cx-test", + "name": "glenn-cx-test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d1006f0b-0000-0100-0000-637d35a90000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "b792850c35c248a1b8943d204a271c8b", + "dateCreated": "2022-03-26T15:44:34.7714509Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-03-26T15:44:34.4816389Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-26T15:44:34.4816389Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/CICD_Resources/providers/Microsoft.CognitiveServices/accounts/CI-CD-PredictionResource-Authoring", + "name": "CI-CD-PredictionResource-Authoring", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d100e05f-0000-0100-0000-637d3ace0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "LUIS", + "tags": {}, + "properties": { + "endpoint": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/", + "internalId": "dd4a30c33bc949de9a043f8818b586d7", + "dateCreated": "2022-08-05T15:44:48.2146912Z", + "callRateLimit": { + "rules": [ + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ci-cd-predictionresource-authoring", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "LUIS.LUIS" + } + ], + "endpoints": { + "LUIS": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/", + "Unified Speech": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/", + "Container": "https://ci-cd-predictionresource-authoring.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-08-05T15:44:47.7020159Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-08-05T15:44:47.7020159Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-eastus/providers/Microsoft.CognitiveServices/accounts/rhurey-vision-eastus", + "name": "rhurey-vision-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d1008673-0000-0100-0000-637d3bd80000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "CognitiveServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "0b85f18468f946dcbe3af77b595c30ec", + "dateCreated": "2022-09-01T17:17:30.0616005Z", + "apiProperties": {}, + "callRateLimit": { + "rules": [ + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "customvision.training", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "customvision/v3.0/training/*", + "method": "*" + }, + { + "path": "customvision/v3.1/training/*", + "method": "*" + }, + { + "path": "customvision/v3.2/training/*", + "method": "*" + }, + { + "path": "customvision/v3.3/training/*", + "method": "*" + }, + { + "path": "customvision/v3.4-preview/training/*", + "method": "*" + } + ] + }, + { + "key": "customvision.prediction", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "customvision/v3.0/prediction/*", + "method": "*" + }, + { + "path": "customvision/v3.1/prediction/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "documentTranslation.post", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "POST" + } + ] + }, + { + "key": "documentTranslation.get", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "GET" + } + ] + }, + { + "key": "documentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/text/batch/*", + "method": "*" + } + ] + }, + { + "key": "textTranslation", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "translator/text/*", + "method": "*" + } + ] + }, + { + "key": "singledocumentTranslation.default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "translator/document:translate", + "method": "*" + } + ] + }, + { + "key": "token", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ListManagement", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/lists/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "Moderate", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ModeratePreview20220930", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/moderate/text/*", + "method": "*" + } + ] + }, + { + "key": "Review", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/review/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieList", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text/lists/*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/text*", + "method": "*" + } + ] + }, + { + "key": "ContentModerator.CarnegieImage", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentmoderator/image*", + "method": "*" + } + ] + }, + { + "key": "luis.endpoint", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "luis/*", + "method": "*" + }, + { + "path": "luis/prediction/*", + "method": "*" + } + ] + }, + { + "key": "workflow.endpoint.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-conversations", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.conversations.jobs.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-conversations/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:analyze-text", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.getcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzetext.jobs.postcalls", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "language/analyze-text/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.analyzedocuments.jobs.postcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-documents/jobs", + "method": "POST" + } + ] + }, + { + "key": "textAnalytics.generate.postcalls", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "language/:generate", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.march.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.march.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-text/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.authoring.customtext.internal.getcalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.internal.updatecalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-text/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.march.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/authoring/analyze-conversations/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.getCalls", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "GET" + } + ] + }, + { + "key": "textAnalytics.unifiedAuthoring.clu.internal.updateCalls", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "language/analyze-conversations/internal/projects/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.customText", + "renewalPeriod": 60, + "count": 100, + "matchPatterns": [ + { + "path": "text/analytics/v3.1-preview.ct.1/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze", + "renewalPeriod": 60, + "count": 300, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/analyze/*", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/analyze/*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.healthcare", + "renewalPeriod": 60, + "count": 300, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/entities/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.1/health", + "method": "*" + }, + { + "path": "text/analytics/v3.2-preview.2/health", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.languagedetection", + "renewalPeriod": 60, + "count": 1000, + "matchPatterns": [ + { + "path": "text/analytics/v3.1/languages", + "method": "*" + } + ] + }, + { + "key": "textAnalytics", + "renewalPeriod": 60, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "text/analytics/*", + "method": "*" + } + ] + }, + { + "key": "questionanswering", + "renewalPeriod": 60, + "count": 600, + "matchPatterns": [ + { + "path": "qnamaker/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering", + "renewalPeriod": 1, + "count": 3, + "matchPatterns": [ + { + "path": "language/query-knowledgebases/*", + "method": "*" + } + ] + }, + { + "key": "unifiedlanguage.questionanswering.inference", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "language/:query-*", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.autoTagging", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-auto-tagging", + "method": "*" + } + ] + }, + { + "key": "textAnalytics.analyze.internal.evaluation", + "renewalPeriod": 60, + "count": 150, + "matchPatterns": [ + { + "path": "TextAnalytics/ct-evaluation", + "method": "*" + } + ] + }, + { + "key": "vision.recognizeText", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/recognizeText", + "method": "POST" + }, + { + "path": "vision/textOperations/*", + "method": "GET" + }, + { + "path": "vision/read/*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "vision/*", + "method": "*" + } + ] + }, + { + "key": "face", + "renewalPeriod": 1, + "count": 10, + "matchPatterns": [ + { + "path": "face/*", + "method": "*" + } + ] + }, + { + "key": "bingVisualSearch", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "bing/v7.0/images/visualsearch/*", + "method": "*" + } + ] + }, + { + "key": "bingSearch", + "renewalPeriod": 1, + "count": 250, + "matchPatterns": [ + { + "path": "bing/*", + "method": "*" + } + ] + }, + { + "key": "bingCustomSearch", + "renewalPeriod": 1, + "count": 150, + "matchPatterns": [ + { + "path": "bingcustomsearch/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "Scenario", + "value": "Face.Legacy,ComputerVision.Legacy" + }, + { + "name": "Container", + "value": "ComputerVision.API.Private,ComputerVision.API.1P,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,LUIS.LUIS,ContentModerator.*,TextTranslation.*,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "Cloud", + "value": "TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Bing Autosuggest": "https://eastus.api.cognitive.microsoft.com/", + "Bing Spell Check": "https://eastus.api.cognitive.microsoft.com/", + "Bing Entity Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Image Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing News Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Video Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Web Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Visual Search": "https://eastus.api.cognitive.microsoft.com/", + "Bing Custom Search": "https://eastus.api.cognitive.microsoft.com/", + "Face": "https://eastus.api.cognitive.microsoft.com/", + "Computer Vision": "https://eastus.api.cognitive.microsoft.com/", + "Container": "https://eastus.api.cognitive.microsoft.com/", + "Text Analytics": "https://eastus.api.cognitive.microsoft.com/", + "Custom Text Authoring": "https://eastus.api.cognitive.microsoft.com/", + "Conversational Language Understanding Authoring": "https://eastus.api.cognitive.microsoft.com/", + "Custom Question Answering Authoring": "https://eastus.api.cognitive.microsoft.com/", + "Custom Question Answering": "https://eastus.api.cognitive.microsoft.com/", + "ConversationalLURuntime": "https://eastus.api.cognitive.microsoft.com/", + "Language": "https://eastus.api.cognitive.microsoft.com/", + "QnAMaker": "https://eastus.api.cognitive.microsoft.com/", + "Turing": "https://eastus.api.cognitive.microsoft.com/", + "QuestionAnswering": "https://eastus.api.cognitive.microsoft.com/", + "LUIS": "https://eastus.api.cognitive.microsoft.com/", + "Unified Speech": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator - Review": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator - Moderate": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator Client": "https://eastus.api.cognitive.microsoft.com/", + "Content Moderator - List Management": "https://eastus.api.cognitive.microsoft.com/", + "TextTranslation-Global": "https://api.cognitive.microsofttranslator.com/", + "TextTranslation": "https://eastus.api.cognitive.microsoft.com/", + "DocumentTranslation": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.0": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Prediction_3.1": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.1": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.2": "https://eastus.api.cognitive.microsoft.com/", + "Custom_Vision_Training_3.3": "https://eastus.api.cognitive.microsoft.com/", + "FormRecognizer": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-09-01T17:17:29.7024847Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-09-01T17:17:29.7024847Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account-eastus", + "name": "openai-sdk-test-automation-account-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002219101808-0000-0100-0000-65a7139c0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://sdk8428.openai.azure.com/", + "internalId": "1ae165719699410c9b5dba48cfaf5755", + "dateCreated": "2023-03-11T00:56:59.0742286Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "sdk8428", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://sdk8428.openai.azure.com/", + "OpenAI Dall-E API": "https://sdk8428.openai.azure.com/", + "OpenAI Whisper API": "https://sdk8428.openai.azure.com/", + "OpenAI Model Scaleset API": "https://sdk8428.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "createdByType": "Application", + "createdAt": "2023-03-11T00:56:57.9983563Z", + "lastModifiedBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-03-11T00:56:57.9983563Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/gelecaro-ai-rg-eastus/providers/Microsoft.CognitiveServices/accounts/gelecaro-ai-eastus", + "name": "gelecaro-ai-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022160547fc-0000-0100-0000-64f258bf0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "174b1c17fe694454ace2e77e30c488d8", + "dateCreated": "2023-09-01T21:32:23.5112428Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-01T21:32:23.1783621Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-01T21:32:23.1783621Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rhurey-eastus/providers/Microsoft.CognitiveServices/accounts/rhurey-openai", + "name": "rhurey-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022a600650f-0000-0100-0000-65b14ca10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://rhurey-openai.openai.azure.com/", + "internalId": "ee8b2fda948e4fee95e99fbbf0615176", + "dateCreated": "2023-09-06T16:51:30.0789637Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "rhurey-openai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://rhurey-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://rhurey-openai.openai.azure.com/", + "OpenAI Whisper API": "https://rhurey-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://rhurey-openai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-06T16:51:29.5662123Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T16:51:29.5662123Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-resource", + "name": "markhiet-test-resource", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002219108127-0000-0100-0000-65a714ba0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://markhiet-test-resource.openai.azure.com/", + "internalId": "bc5e007e3b54448f9506bff54b2a56ef", + "dateCreated": "2023-09-06T16:55:57.0197025Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-test-resource", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://markhiet-test-resource.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-test-resource.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-test-resource.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-test-resource.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-06T16:55:56.1778549Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-06T16:55:56.1778549Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-green-weasel-rg/providers/Microsoft.CognitiveServices/accounts/robch-green-weasel-openai", + "name": "robch-green-weasel-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225403d46d-0000-0100-0000-654ed7560000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://robch-green-weasel-openai.openai.azure.com/", + "provisioningState": "Succeeded", + "internalId": "ca0d18cf8ea64ead92bdca7474486d5c", + "dateCreated": "2023-09-11T11:39:29.5717021Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-green-weasel-openai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-green-weasel-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-green-weasel-openai.openai.azure.com/", + "OpenAI Whisper API": "https://robch-green-weasel-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-green-weasel-openai.openai.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-11T11:39:29.2366514Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-17T23:46:25.6145811Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-brandom-pyWebAi-1st/providers/Microsoft.CognitiveServices/accounts/cog-fr-5fyb3r6njxy6q", + "name": "cog-fr-5fyb3r6njxy6q", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00229d000cc7-0000-0100-0000-6504de630000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "FormRecognizer", + "tags": { + "azd-env-name": "brandom-pyWebAi-1st" + }, + "properties": { + "endpoint": "https://cog-fr-5fyb3r6njxy6q.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "4e9a0ce1341448e284f6fe2f71762509", + "dateCreated": "2023-09-15T21:52:03.5203278Z", + "callRateLimit": { + "rules": [ + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "formrecognizer.analyze", + "renewalPeriod": 1, + "count": 15, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{id}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/layout/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyze", + "method": "POST" + }, + { + "path": "formrecognizer/prebuilt/receipt/asyncBatchAnalyze", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "formrecognizer/read", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:analyze", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}:analyze", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.get.object", + "renewalPeriod": 1, + "count": 50, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/invoice/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/prebuilt/receipt/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/layout/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copyResults/{resultId}", + "method": "GET" + }, + { + "path": "formrecognizer/operations/{operationId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}", + "method": "GET" + }, + { + "path": "documentintelligence/operations/{operationId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.list.objects", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/operations", + "method": "GET" + }, + { + "path": "formrecognizer/info", + "method": "GET" + }, + { + "path": "formrecognizer/documentModels", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models", + "method": "GET" + }, + { + "path": "formrecognizer/documentClassifiers", + "method": "GET" + }, + { + "path": "documentintelligence/documentModels", + "method": "GET" + }, + { + "path": "documentintelligence/operations", + "method": "GET" + }, + { + "path": "documentintelligence/info", + "method": "GET" + }, + { + "path": "documentintelligence/documentClassifiers", + "method": "GET" + } + ] + }, + { + "key": "formrecognizer.model.management", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "formrecognizer/custom/models", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/copyAuthorization", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{id}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{id}/keys", + "method": "GET" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/custom/models/{modelId}/copy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentModels:compose", + "method": "POST" + }, + { + "path": "formrecognizer/custom/train", + "method": "POST" + }, + { + "path": "formrecognizer/custom/models/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "formrecognizer/documentClassifiers:build", + "method": "POST" + }, + { + "path": "formrecognizer/documentClassifiers/{classifierId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentModels:authorizeCopy", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}:copyTo", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels:compose", + "method": "POST" + }, + { + "path": "documentintelligence/documentModels/{modelId}", + "method": "DELETE" + }, + { + "path": "documentintelligence/documentClassifiers:build", + "method": "POST" + }, + { + "path": "documentintelligence/documentClassifiers/{classifierId}", + "method": "DELETE" + } + ] + }, + { + "key": "formrecognizer.chat.build", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "documentintelligence/chat:build", + "method": "POST" + } + ] + }, + { + "key": "formrecognizer.chat.complete", + "renewalPeriod": 60, + "count": 5, + "matchPatterns": [ + { + "path": "documentintelligence/chat/{chatId}:complete", + "method": "POST" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 5, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "cog-fr-5fyb3r6njxy6q", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "DynamicThrottling" + }, + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp" + } + ], + "endpoints": { + "FormRecognizer": "https://cog-fr-5fyb3r6njxy6q.cognitiveservices.azure.com/", + "Container": "https://cog-fr-5fyb3r6njxy6q.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-15T21:52:03.2360472Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-15T22:44:50.7147453Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-green-weasel-rg/providers/Microsoft.CognitiveServices/accounts/robch-green-weasel-speech", + "name": "robch-green-weasel-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221401a5cd-0000-0100-0000-65131b510000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "27de671683f94f5fbfc2f8c2d0bcbfdb", + "dateCreated": "2023-09-26T17:56:33.0079215Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-09-26T17:56:32.6802086Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-09-26T17:56:32.6802086Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/gelecaro-test-aoai", + "name": "gelecaro-test-aoai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221800a1ea-0000-0100-0000-653c03740000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://gelecaro-test-aoai.openai.azure.com/", + "internalId": "5416e163b8a54a9d97799554327e54e6", + "dateCreated": "2023-10-17T23:52:48.0398545Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "gelecaro-test-aoai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://gelecaro-test-aoai.openai.azure.com/", + "OpenAI Dall-E API": "https://gelecaro-test-aoai.openai.azure.com/", + "OpenAI Whisper API": "https://gelecaro-test-aoai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://gelecaro-test-aoai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "e468afe3-9b74-42e5-8e94-9a2603145b96", + "createdByType": "Application", + "createdAt": "2023-10-17T23:52:47.2203146Z", + "lastModifiedBy": "e468afe3-9b74-42e5-8e94-9a2603145b96", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-10-17T23:52:47.2203146Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-green-weasel-rg/providers/Microsoft.CognitiveServices/accounts/robch-green-weasel-aiservices", + "name": "robch-green-weasel-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002283042306-0000-0100-0000-654d03220000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "be7b5ee4d2a14feb80547b4fb84a4863", + "dateCreated": "2023-10-29T20:27:49.0181192Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-green-weasel-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-green-weasel-aiservices.openai.azure.com/", + "Content Safety": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-green-weasel-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-10-29T20:27:47.1425814Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-31T20:54:40.7788123Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-speech-free-eastus", + "name": "ralphe-speech-free-eastus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ab00dd45-0000-0100-0000-65400a980000\u0022", + "location": "eastus", + "sku": { + "name": "F0" + }, + "kind": "SpeechServices", + "tags": {}, + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "5277b77f7c854b62aeb39de3aede01f7", + "dateCreated": "2023-10-30T19:57:12.5628026Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 0, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "identity": { + "type": "None" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-10-30T19:57:12.2534604Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-10-30T19:57:12.2534604Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-elastic-panda-rg/providers/Microsoft.CognitiveServices/accounts/robch-elastic-panda-ai-aiservices", + "name": "robch-elastic-panda-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022bd04048c-0000-0100-0000-654d7f410000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "972cfde9dec24a24a2142caa21191dc2", + "dateCreated": "2023-11-07T18:44:28.5894086Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-elastic-panda-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-elastic-panda-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-elastic-panda-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "aad108d6-0e36-43e5-bb11-7517c777e56d", + "createdByType": "Application", + "createdAt": "2023-11-07T18:44:28.1204658Z", + "lastModifiedBy": "aad108d6-0e36-43e5-bb11-7517c777e56d", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-07T18:45:01.360616Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-elastic-panda-rg/providers/Microsoft.CognitiveServices/accounts/robch-elastic-panda419-ai-aiservices", + "name": "robch-elastic-panda419-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022b2030439-0000-0100-0000-654ad4f10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "09a7ff1fb2c34fad9b9199f9a3f4fc18", + "dateCreated": "2023-11-08T00:20:50.3354278Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-elastic-panda419-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-elastic-panda419-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-elastic-panda419-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "fb5688ee-64e4-4365-b537-1d881bd1c809", + "createdByType": "Application", + "createdAt": "2023-11-08T00:20:49.7872782Z", + "lastModifiedBy": "fb5688ee-64e4-4365-b537-1d881bd1c809", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-08T00:21:23.2302876Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/gelecaro-ai-rg-eastus/providers/Microsoft.CognitiveServices/accounts/gelecaro-ai-ai-eastus-aiservices", + "name": "gelecaro-ai-ai-eastus-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220a0c2a68-0000-0100-0000-656fc0230000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "4d7bc156ce794f64943eb144a634cb6e", + "dateCreated": "2023-11-09T18:42:21.7120272Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "gelecaro-ai-ai-eastus-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://gelecaro-ai-ai-eastus-aiservices.openai.azure.com/", + "Content Safety": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/", + "Token": "https://gelecaro-ai-ai-eastus-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "e4656893-2603-4907-9a1a-f9aa0a5c1130", + "createdByType": "Application", + "createdAt": "2023-11-09T18:42:20.7124155Z", + "lastModifiedBy": "e4656893-2603-4907-9a1a-f9aa0a5c1130", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-09T18:43:02.8081934Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-robchai1234/providers/Microsoft.CognitiveServices/accounts/robch-ai-1234-aiservices", + "name": "robch-ai-1234-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e1009875-0000-0100-0000-65b44a880000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "ab48ccb604714660afcec28586ace76a", + "dateCreated": "2023-11-09T20:36:06.655985Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-ai-1234-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-ai-1234-aiservices.openai.azure.com/", + "Content Safety": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-ai-1234-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "629c2a38-5136-4b2d-890e-8fc27fd8982a", + "createdByType": "Application", + "createdAt": "2023-11-09T20:36:05.6255802Z", + "lastModifiedBy": "629c2a38-5136-4b2d-890e-8fc27fd8982a", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-09T20:36:41.5576313Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-robchai1241/providers/Microsoft.CognitiveServices/accounts/robch-ai-1241-aiservices", + "name": "robch-ai-1241-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022d80ca70d-0000-0100-0000-6577a98a0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "3aa94d0ded144323a7652ab1010d2392", + "dateCreated": "2023-11-09T20:43:41.6048922Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-ai-1241-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-ai-1241-aiservices.openai.azure.com/", + "Content Safety": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-ai-1241-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "d3656bfe-98d8-4f71-9795-b9948c465d97", + "createdByType": "Application", + "createdAt": "2023-11-09T20:43:40.6927445Z", + "lastModifiedBy": "d3656bfe-98d8-4f71-9795-b9948c465d97", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-09T20:44:22.5070251Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cool-brown-baboon-rg/providers/Microsoft.CognitiveServices/accounts/robch-sad-gray-lion-aiservices", + "name": "robch-sad-gray-lion-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224c03c046-0000-0100-0000-654eb6cb0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "internalId": "14135cfa155e4f98a6fcd950c191ae79", + "dateCreated": "2023-11-10T19:49:20.8748484Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-sad-gray-lion-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-sad-gray-lion-aiservices.openai.azure.com/", + "Content Safety": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-sad-gray-lion-aiservices.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-10T19:49:20.4221161Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-10T19:49:20.4221161Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eager-indigo-lemur-rg/providers/Microsoft.CognitiveServices/accounts/robch-busy-gray-lynx-aiservices", + "name": "robch-busy-gray-lynx-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224103c25c-0000-0100-0000-654e8cfc0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "internalId": "562b5adee1c949c88585482b5ea53376", + "dateCreated": "2023-11-10T20:04:59.7460815Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-busy-gray-lynx-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-busy-gray-lynx-aiservices.openai.azure.com/", + "Content Safety": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-busy-gray-lynx-aiservices.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-10T20:04:57.9860582Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-10T20:04:57.9860582Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cranky-gray-panda-rg/providers/Microsoft.CognitiveServices/accounts/robch-cranky-gray-panda-ai-aiservices", + "name": "robch-cranky-gray-panda-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002248039073-0000-0100-0000-654ea7ae0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "64dfed084d794f9e861e5a40608d8172", + "dateCreated": "2023-11-10T21:56:55.6276163Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-cranky-gray-panda-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-cranky-gray-panda-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-cranky-gray-panda-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "e8feaddb-e409-434c-8c78-220d575f764b", + "createdByType": "Application", + "createdAt": "2023-11-10T21:56:54.6882884Z", + "lastModifiedBy": "e8feaddb-e409-434c-8c78-220d575f764b", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-10T21:57:37.4141237Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-ai-aiservices", + "name": "markhiet-test-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222804c675-0000-0100-0000-655248820000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "d8191c1623fd4a2a927bfc1264cc2002", + "dateCreated": "2023-11-13T15:58:45.3190154Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-test-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-test-ai-aiservices.openai.azure.com/", + "Content Safety": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://markhiet-test-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "c2433d6e-c8fb-4314-b9ba-075643a261f5", + "createdByType": "Application", + "createdAt": "2023-11-13T15:58:44.3200954Z", + "lastModifiedBy": "c2433d6e-c8fb-4314-b9ba-075643a261f5", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-13T15:59:17.7112763Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-pink-unicorn-rg/providers/Microsoft.CognitiveServices/accounts/robch-pink-unicorn-1114-ai-aiservices", + "name": "robch-pink-unicorn-1114-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022e9046459-0000-0100-0000-65543ecc0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "provisioningState": "Succeeded", + "internalId": "4ae968d4f2014c84a020edb477587992", + "dateCreated": "2023-11-15T03:44:33.6660379Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-pink-unicorn-1114-ai-aiservices", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "OpenAI Whisper API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-pink-unicorn-1114-ai-aiservices.openai.azure.com/", + "Content Safety": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Video Translation": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/", + "Token": "https://robch-pink-unicorn-1114-ai-aiservices.cognitiveservices.azure.com/" + } + }, + "systemData": { + "createdBy": "eb5519cf-2610-4b63-a408-0b2b91066232", + "createdByType": "Application", + "createdAt": "2023-11-15T03:44:32.7292807Z", + "lastModifiedBy": "eb5519cf-2610-4b63-a408-0b2b91066232", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-15T03:45:07.87766Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-brandom-pyWebAi-1st/providers/Microsoft.CognitiveServices/accounts/brandom-openai-deployment", + "name": "brandom-openai-deployment", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221a10cdc2-0000-0100-0000-65a723420000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://brandom-openai-deployment.openai.azure.com/", + "internalId": "bf8fd0dc08f649fbaf7e411ea5d578fe", + "dateCreated": "2023-12-05T22:50:27.8015841Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "brandom-openai-deployment", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://brandom-openai-deployment.openai.azure.com/", + "OpenAI Dall-E API": "https://brandom-openai-deployment.openai.azure.com/", + "OpenAI Whisper API": "https://brandom-openai-deployment.openai.azure.com/", + "OpenAI Model Scaleset API": "https://brandom-openai-deployment.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-05T22:50:27.0570445Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-05T22:50:27.0570445Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/jhakulin-zen-blue-orca-rg/providers/Microsoft.CognitiveServices/accounts/jhakulin-zen-blue-orca-ai-aiservices", + "name": "jhakulin-zen-blue-orca-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022850c6005-0000-0100-0000-657348f50000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "internalId": "ae83a6b3c7ae4d538988ca4e74a85e84", + "dateCreated": "2023-12-08T16:48:35.5980808Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-zen-blue-orca-ai-aiservices-134540302", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.openai.azure.com/", + "Content Safety": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/", + "Token": "https://jhakulin-zen-blue-orca-ai-aiservices-134540302.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "efd6acc6-3611-4939-967d-e2e8d32a0a4f", + "createdByType": "Application", + "createdAt": "2023-12-08T16:48:34.5548374Z", + "lastModifiedBy": "efd6acc6-3611-4939-967d-e2e8d32a0a4f", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-08T16:48:34.5548374Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/ai-markhiet-test-aiservices", + "name": "ai-markhiet-test-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022860c52ec-0000-0100-0000-65736bd10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "internalId": "0b5c00038ab142a3a820734ff6986147", + "dateCreated": "2023-12-08T19:17:19.6719135Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-markhiet-test-aiservices-962128184", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "OpenAI Dall-E API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "OpenAI Whisper API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ai-markhiet-test-aiservices-962128184.openai.azure.com/", + "Content Safety": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Video Translation": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/", + "Token": "https://ai-markhiet-test-aiservices-962128184.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "91419dfd-34f7-44d8-bc23-a5b65c9fa261", + "createdByType": "Application", + "createdAt": "2023-12-08T19:17:19.0117695Z", + "lastModifiedBy": "91419dfd-34f7-44d8-bc23-a5b65c9fa261", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-08T19:17:19.0117695Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-sad-green-lynx-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-sad-green-lynx-ai-aiservices", + "name": "markhiet-sad-green-lynx-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022db095f39-0000-0100-0000-657b43ac0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "internalId": "dc37a26229704df1bc4ff0e59dce9003", + "dateCreated": "2023-12-14T17:57:45.4979799Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-sad-green-lynx-ai-aiservices1712556874", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.openai.azure.com/", + "Content Safety": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/", + "Token": "https://markhiet-sad-green-lynx-ai-aiservices1712556874.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "30e0b4df-98ed-4ac3-b954-b4596bd49fa6", + "createdByType": "Application", + "createdAt": "2023-12-14T17:57:45.0791242Z", + "lastModifiedBy": "30e0b4df-98ed-4ac3-b954-b4596bd49fa6", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-14T17:57:45.0791242Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/jhakulin-zen-blue-lion-rg/providers/Microsoft.CognitiveServices/accounts/jhakulin-zen-blue-lion-ai-aiservices", + "name": "jhakulin-zen-blue-lion-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228200f497-0000-0100-0000-65b029a10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "internalId": "78a5c27b1b164556b6182b43408ca18f", + "dateCreated": "2023-12-14T21:06:31.3058468Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "jhakulin-zen-blue-lion-ai-aiservices-432419205", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "OpenAI Dall-E API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "OpenAI Whisper API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "OpenAI Model Scaleset API": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.openai.azure.com/", + "Content Safety": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Video Translation": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/", + "Token": "https://jhakulin-zen-blue-lion-ai-aiservices-432419205.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "9a0cd747-77d9-480b-8aaa-bc9e0caea0ac", + "createdByType": "Application", + "createdAt": "2023-12-14T21:06:29.7747745Z", + "lastModifiedBy": "9a0cd747-77d9-480b-8aaa-bc9e0caea0ac", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-12-14T21:06:29.7747745Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-cs4", + "name": "markhiet-test-cs4", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221a0a70f0-0000-0100-0000-658476640000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "e64ed4daa0a54f39bb579aa2bf2089c5", + "dateCreated": "2023-12-21T17:31:01.3903776Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-21T17:31:01.2068265Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-21T17:31:01.2068265Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-test/providers/Microsoft.CognitiveServices/accounts/markhiet-test-cs5", + "name": "markhiet-test-cs5", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221b0a6811-0000-0100-0000-65847baa0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "aba07d7eb9124445bd74c62501e13778", + "dateCreated": "2023-12-21T17:53:28.8035854Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-21T17:53:28.699726Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-21T17:53:28.699726Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-testRun-1-8/providers/Microsoft.CognitiveServices/accounts/aoai-7ttssbdvw4hqy", + "name": "aoai-7ttssbdvw4hqy", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022f40ebd7e-0000-0100-0000-659c83c00000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "provisioningState": "Succeeded", + "internalId": "b7d3a237103145559c36dbddf8117d5a", + "dateCreated": "2024-01-08T23:15:40.8378444Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "aoai-7ttssbdvw4hqy", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "OpenAI Dall-E API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "OpenAI Whisper API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/", + "OpenAI Model Scaleset API": "https://aoai-7ttssbdvw4hqy.openai.azure.com/" + } + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-08T23:15:40.5310906Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-08T23:22:23.70613Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralph-test-azure-openai", + "name": "ralph-test-azure-openai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022210ff68e-0000-0100-0000-659e2b730000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": { + "owner": "ralphe", + "type": "testing" + }, + "properties": { + "endpoint": "https://ralph-test-azure-openai.openai.azure.com/", + "internalId": "727c4af732f949cfa9c567da29c3911c", + "dateCreated": "2024-01-10T05:28:08.3988819Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralph-test-azure-openai", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://ralph-test-azure-openai.openai.azure.com/", + "OpenAI Dall-E API": "https://ralph-test-azure-openai.openai.azure.com/", + "OpenAI Whisper API": "https://ralph-test-azure-openai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralph-test-azure-openai.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-10T05:28:07.9134985Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-10T05:28:07.9134985Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/brianem_endpoint_testing/providers/Microsoft.CognitiveServices/accounts/BrianEM-endpointtest-es-us", + "name": "BrianEM-endpointtest-es-us", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022c40fe1bf-0000-0100-0000-65a418610000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://eastus.api.cognitive.microsoft.com/", + "internalId": "ea8a883cdde942bf90665ce6d55345b2", + "dateCreated": "2024-01-14T17:22:41.0944634Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus.api.cognitive.microsoft.com/", + "Token": "https://eastus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-14T17:22:40.7049666Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-14T17:22:40.7049666Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-copilot2/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-copilot2-aiservices", + "name": "markhiet-ai-copilot2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00228200867f-0000-0100-0000-65b026f10000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "internalId": "ee2dcb3a8633457f82bf1ce5015f5b8f", + "dateCreated": "2024-01-23T20:47:56.3431593Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-copilot2-aiservices-635106369", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-copilot2-aiservices-635106369.openai.azure.com/", + "Content Safety": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-copilot2-aiservices-635106369.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "a552af86-c1d5-441a-b6e4-9b8797b2b928", + "createdByType": "Application", + "createdAt": "2024-01-23T20:47:55.9179863Z", + "lastModifiedBy": "a552af86-c1d5-441a-b6e4-9b8797b2b928", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-23T20:47:55.9179863Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-nubackai/providers/Microsoft.CognitiveServices/accounts/nuback-ai-aiservices", + "name": "nuback-ai-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022320104e1-0000-0100-0000-65b8377d0000\u0022", + "location": "eastus", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "internalId": "14bef067fca5409eb0f9f55a6b347c6e", + "dateCreated": "2024-01-29T23:40:29.2817255Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "nuback-ai-aiservices-2037333326", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "OpenAI Dall-E API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "OpenAI Whisper API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "OpenAI Model Scaleset API": "https://nuback-ai-aiservices-2037333326.openai.azure.com/", + "Content Safety": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Video Translation": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/", + "Token": "https://nuback-ai-aiservices-2037333326.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7a404bbb-ed66-4bf6-8f10-699936c820b9", + "createdByType": "Application", + "createdAt": "2024-01-29T23:40:28.2047898Z", + "lastModifiedBy": "7a404bbb-ed66-4bf6-8f10-699936c820b9", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-29T23:40:28.2047898Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-eastus2", + "name": "openai-sdk-test-automation-eastus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222f00d6b0-0000-0200-0000-65579cc20000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "internalId": "1ab45697a3a244a8a6138e46cc081963", + "dateCreated": "2023-08-29T17:12:08.8832417Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-sdk-test-automation-eastus2", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "OpenAI Whisper API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-sdk-test-automation-eastus2.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-08-29T17:12:08.1799585Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-08-29T17:12:08.1799585Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cranky-red-koala-rg/providers/Microsoft.CognitiveServices/accounts/robch-cranky-red-koala-ais", + "name": "robch-cranky-red-koala-ais", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00223500cdd8-0000-0200-0000-655be3520000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "internalId": "63a9c66a7b234d45b1c9c4de823fcd0e", + "dateCreated": "2023-11-20T22:51:03.1556509Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-cranky-red-koala-ais", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "OpenAI Whisper API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-cranky-red-koala-ais.openai.azure.com/", + "Content Safety": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Video Translation": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/", + "Token": "https://robch-cranky-red-koala-ais.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-20T22:51:01.5885312Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-20T22:51:01.5885312Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-eastus2-rg/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2", + "name": "robch-oai-eastus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002266006ba1-0000-0200-0000-65774d5f0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://robch-oai-eastus2.openai.azure.com/", + "internalId": "deaf47e5246148dc891f41d7bb78a373", + "dateCreated": "2023-11-30T14:48:10.6589892Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-oai-eastus2", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://robch-oai-eastus2.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-oai-eastus2.openai.azure.com/", + "OpenAI Whisper API": "https://robch-oai-eastus2.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-oai-eastus2.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-30T14:48:10.3813239Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-30T14:48:10.3813239Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/josealvar-azd-tests-dev/providers/Microsoft.CognitiveServices/accounts/audio-testing-account", + "name": "audio-testing-account", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022850056d7-0000-0200-0000-658571190000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://audio-testing-account.openai.azure.com/", + "internalId": "982aecf5e1fb44f3a2cb24a27d466b53", + "dateCreated": "2023-12-22T11:20:40.0650732Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "audio-testing-account", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://audio-testing-account.openai.azure.com/", + "OpenAI Dall-E API": "https://audio-testing-account.openai.azure.com/", + "OpenAI Whisper API": "https://audio-testing-account.openai.azure.com/", + "OpenAI Model Scaleset API": "https://audio-testing-account.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-22T11:20:39.842432Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-22T11:20:39.842432Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/ralphe-test-20230810/providers/Microsoft.CognitiveServices/accounts/ralphe-test-azure-ai-eastus2-aiservices", + "name": "ralphe-test-azure-ai-eastus2-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00229d011ec5-0000-0200-0000-659e40670000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "internalId": "4bed94cfa8cf49a3ab67ae8377e2c02f", + "dateCreated": "2024-01-10T06:34:01.8168764Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ralphe-test-azure-ai-eastus2-aiservices1110731492", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "OpenAI Dall-E API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "OpenAI Whisper API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.openai.azure.com/", + "Content Safety": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Video Translation": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/", + "Token": "https://ralphe-test-azure-ai-eastus2-aiservices1110731492.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "b5ee77d0-1198-4bcd-818e-9d282a000435", + "createdByType": "Application", + "createdAt": "2024-01-10T06:34:00.9308234Z", + "lastModifiedBy": "b5ee77d0-1198-4bcd-818e-9d282a000435", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-10T06:34:00.9308234Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai", + "name": "markhiet-eus2-oai", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b017d68-0000-0200-0000-65a174150000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "internalId": "f40ab5311b4040e5ac2d1e914a40167a", + "dateCreated": "2024-01-12T17:16:05.300538Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-eus2-oai", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-eus2-oai.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-eus2-oai.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-eus2-oai.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-eus2-oai.openai.azure.com/", + "Content Safety": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-eus2-oai.cognitiveservices.azure.com/", + "Token": "https://markhiet-eus2-oai.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T17:16:04.8520994Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T17:16:04.8520994Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai2", + "name": "markhiet-eus2-oai2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b011ab5-0000-0200-0000-65a1ad0b0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://eastus2.api.cognitive.microsoft.com/", + "internalId": "1668f2cac701473e860ea58be1752f54", + "dateCreated": "2024-01-12T21:19:19.8096096Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T21:19:19.7091106Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T21:19:19.7091106Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai3", + "name": "markhiet-eus2-oai3", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b0107b9-0000-0200-0000-65a1b0020000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://eastus2.api.cognitive.microsoft.com/", + "internalId": "6e2ee1bfe8d641999150c1bbc3d90c92", + "dateCreated": "2024-01-12T21:32:15.8155376Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Language Model Instance API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Dall-E API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Whisper API": "https://eastus2.api.cognitive.microsoft.com/", + "OpenAI Model Scaleset API": "https://eastus2.api.cognitive.microsoft.com/", + "Content Safety": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://eastus2.api.cognitive.microsoft.com/", + "Video Translation": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://eastus2.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://eastus2.api.cognitive.microsoft.com/", + "Token": "https://eastus2.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T21:32:15.7347156Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T21:32:15.7347156Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-eus2-rg/providers/Microsoft.CognitiveServices/accounts/markhiet-eus2-oai4", + "name": "markhiet-eus2-oai4", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00225b0168be-0000-0200-0000-65a1b53a0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "internalId": "0d860d1ff2984f1c99f0ade8c90347c3", + "dateCreated": "2024-01-12T21:54:23.5071188Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-eus2-oai4", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-eus2-oai4.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-eus2-oai4.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-eus2-oai4.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-eus2-oai4.openai.azure.com/", + "Content Safety": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/", + "Token": "https://markhiet-eus2-oai4.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-12T21:54:22.0846617Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-12T21:54:22.0846617Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulin-cool-teal-yak/providers/Microsoft.CognitiveServices/accounts/ai-jhakulin-cool-teal-yak-aiservices", + "name": "ai-jhakulin-cool-teal-yak-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002207000845-0000-0200-0000-65aed5a80000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "internalId": "6cf69f8a71fa4d03bea4b41b102e6280", + "dateCreated": "2024-01-22T20:50:10.7439519Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-jhakulin-cool-teal-yak-aiservices1083288906", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "OpenAI Dall-E API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "OpenAI Whisper API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.openai.azure.com/", + "Content Safety": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Video Translation": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/", + "Token": "https://ai-jhakulin-cool-teal-yak-aiservices1083288906.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "31db4d50-8e7a-4997-ab16-6f7197baa14c", + "createdByType": "Application", + "createdAt": "2024-01-22T20:50:09.4204915Z", + "lastModifiedBy": "31db4d50-8e7a-4997-ab16-6f7197baa14c", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-22T20:50:09.4204915Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/dcohen-azure-ai-resource-group/providers/Microsoft.CognitiveServices/accounts/dcohen-ai-resource-name-aiservices", + "name": "dcohen-ai-resource-name-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00221700fc3c-0000-0200-0000-65b8408c0000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "internalId": "60b26d21c42a4fc4b886af3768303500", + "dateCreated": "2024-01-23T23:43:30.8409674Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "dcohen-ai-resource-name-aiservices730519125", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "OpenAI Dall-E API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "OpenAI Whisper API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "OpenAI Model Scaleset API": "https://dcohen-ai-resource-name-aiservices730519125.openai.azure.com/", + "Content Safety": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Video Translation": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/", + "Token": "https://dcohen-ai-resource-name-aiservices730519125.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "79deff58-236b-4f82-b300-26760e7d7354", + "createdByType": "Application", + "createdAt": "2024-01-23T23:43:30.5272774Z", + "lastModifiedBy": "79deff58-236b-4f82-b300-26760e7d7354", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-23T23:43:30.5272774Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-copilot3/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-copilot3-aiservices", + "name": "markhiet-ai-copilot3-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022090034a3-0000-0200-0000-65b127470000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "internalId": "7df4e8fcd449492caaf69ba908de572f", + "dateCreated": "2024-01-24T14:59:00.7554823Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-copilot3-aiservices-1878066100", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-copilot3-aiservices-1878066100.openai.azure.com/", + "Content Safety": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-copilot3-aiservices-1878066100.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "f2a09487-78b3-459f-928f-0afa38b9ebe3", + "createdByType": "Application", + "createdAt": "2024-01-24T14:58:59.9409553Z", + "lastModifiedBy": "f2a09487-78b3-459f-928f-0afa38b9ebe3", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-24T14:58:59.9409553Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-try2-eastus2/providers/Microsoft.CognitiveServices/accounts/robch-oai-eastus2-try2", + "name": "robch-oai-eastus2-try2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002212006862-0000-0200-0000-65b5c7f50000\u0022", + "location": "eastus2", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "internalId": "f539b31f6ea8483c9277ebe1d4d16905", + "dateCreated": "2024-01-28T03:20:09.1009532Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "robch-oai-eastus2-try2", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "OpenAI Dall-E API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "OpenAI Whisper API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "OpenAI Model Scaleset API": "https://robch-oai-eastus2-try2.openai.azure.com/", + "Content Safety": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Video Translation": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://eastus2.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://eastus2.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/", + "Token": "https://robch-oai-eastus2-try2.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-28T03:20:07.435374Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-28T03:20:07.435374Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/map-rg/providers/Microsoft.CognitiveServices/accounts/map-test", + "name": "map-test", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ec04996e-0000-1100-0000-65bbe9aa0000\u0022", + "location": "uksouth", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://map-test.openai.azure.com/", + "internalId": "0e6c8f46babf42adb0c01c5161842ae3", + "dateCreated": "2024-01-25T23:24:40.0318283Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "map-test", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://map-test.openai.azure.com/", + "OpenAI Dall-E API": "https://map-test.openai.azure.com/", + "OpenAI Whisper API": "https://map-test.openai.azure.com/", + "OpenAI Model Scaleset API": "https://map-test.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-25T23:24:38.72244Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-25T23:24:38.72244Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-northcentralus", + "name": "openai-sdk-test-automation-northcentralus", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002249016f4f-0000-0400-0000-65b802e80000\u0022", + "location": "northcentralus", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "internalId": "445fed360e0c420a8cb304c80f72f422", + "dateCreated": "2023-07-11T22:44:14.2496938Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-sdk-test-automation-northcentralus", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + }, + { + "name": "NetworkSecurityPerimeter" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "OpenAI Whisper API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-sdk-test-automation-northcentralus.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-07-11T22:44:13.8446582Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-07-11T22:44:13.8446582Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-centralus/providers/Microsoft.CognitiveServices/accounts/robch-centralus-speech", + "name": "robch-centralus-speech", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u002219010523-0000-0300-0000-635057d80000\u0022", + "location": "centralus", + "sku": { + "name": "S0" + }, + "kind": "SpeechServices", + "properties": { + "endpoint": "https://centralus.api.cognitive.microsoft.com/", + "internalId": "fdfe80de1a4946f684ceba1c33332542", + "dateCreated": "2022-07-07T01:08:15.608565Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Speech Services Speech to Text": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Custom Voice": "https://centralus.api.cognitive.microsoft.com/", + "Video Translation": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Audio Content Creation": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Custom Avatar": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Batch Avatar": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Speech to Text (Standard)": "https://centralus.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://centralus.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://centralus.api.cognitive.microsoft.com/", + "Speech Services Speaker Identification": "https://centralus.api.cognitive.microsoft.com/", + "Token": "https://centralus.api.cognitive.microsoft.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2022-07-07T01:08:15.4404197Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-07-07T01:08:15.4404197Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account-sweden-central", + "name": "openai-sdk-test-automation-account-sweden-central", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220300d879-0000-4700-0000-65c3f8a80000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "internalId": "19023da71da947318222941a35d56355", + "dateCreated": "2023-11-15T21:31:36.03013Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "openai-sdk-test-automation-account-sweden-central", + "networkAcls": { + "defaultAction": "Allow", + "virtualNetworkRules": [], + "ipRules": [] + }, + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "OpenAI Dall-E API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "OpenAI Whisper API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/", + "OpenAI Model Scaleset API": "https://openai-sdk-test-automation-account-sweden-central.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-15T21:31:34.7261971Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-15T21:31:34.7261971Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/openai-test-rg/providers/Microsoft.CognitiveServices/accounts/openai-sdk-test-automation-account-eastus2", + "name": "openai-sdk-test-automation-account-eastus2", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u0022ab04566f-0000-4700-0000-6557c3810000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://sdk3757.openai.azure.com/", + "internalId": "fc0feea6b22c48cfb29cecd4a2076b5c", + "dateCreated": "2023-11-17T19:48:09.9488596Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "sdk3757", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://sdk3757.openai.azure.com/", + "OpenAI Dall-E API": "https://sdk3757.openai.azure.com/", + "OpenAI Whisper API": "https://sdk3757.openai.azure.com/", + "OpenAI Model Scaleset API": "https://sdk3757.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "createdByType": "Application", + "createdAt": "2023-11-17T19:48:08.4658264Z", + "lastModifiedBy": "7f40c5f8-6553-42c2-b5fd-96afd99a5a36", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-11-17T19:48:08.4658264Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/josealvar-azd-tests-dev/providers/Microsoft.CognitiveServices/accounts/chat-completions-testing-account", + "name": "chat-completions-testing-account", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220000e7d9-0000-4700-0000-65a0807d0000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "properties": { + "endpoint": "https://chat-completions-testing-account.openai.azure.com/", + "internalId": "f15adc34ff0b4687b5bf49c97ad94a13", + "dateCreated": "2023-12-22T11:20:41.7268214Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "chat-completions-testing-account", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://chat-completions-testing-account.openai.azure.com/", + "OpenAI Dall-E API": "https://chat-completions-testing-account.openai.azure.com/", + "OpenAI Whisper API": "https://chat-completions-testing-account.openai.azure.com/", + "OpenAI Model Scaleset API": "https://chat-completions-testing-account.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-12-22T11:20:40.9511898Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-12-22T11:20:40.9511898Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/rg-jhakulin-bold-navy-lynx/providers/Microsoft.CognitiveServices/accounts/ai-jhakulin-bold-navy-lynx-aiservices", + "name": "ai-jhakulin-bold-navy-lynx-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220800f32d-0000-4700-0000-65bc1ed20000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "internalId": "fabc0cda58424abd91cf17ef5e5e5413", + "dateCreated": "2024-01-24T16:58:09.3084099Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "ai-jhakulin-bold-navy-lynx-aiservices794017277", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "OpenAI Dall-E API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "OpenAI Whisper API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "OpenAI Model Scaleset API": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.openai.azure.com/", + "Content Safety": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Video Translation": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://swedencentral.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://swedencentral.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/", + "Token": "https://ai-jhakulin-bold-navy-lynx-aiservices794017277.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "355be17f-743f-45e1-a020-142b30242636", + "createdByType": "Application", + "createdAt": "2024-01-24T16:58:08.0131877Z", + "lastModifiedBy": "355be17f-743f-45e1-a020-142b30242636", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-24T16:58:08.0131877Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-copilot4/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-copilot4-aiservices", + "name": "markhiet-ai-copilot4-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220500ee50-0000-4700-0000-65b149800000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "internalId": "ded2c5ea7630445697d055f9900df622", + "dateCreated": "2024-01-24T17:27:13.876655Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-copilot4-aiservices1505757944", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-copilot4-aiservices1505757944.openai.azure.com/", + "Content Safety": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://swedencentral.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://swedencentral.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-copilot4-aiservices1505757944.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "ef3a2b65-ddc0-4043-8a78-e015bf72976d", + "createdByType": "Application", + "createdAt": "2024-01-24T17:27:12.3452438Z", + "lastModifiedBy": "ef3a2b65-ddc0-4043-8a78-e015bf72976d", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-01-24T17:27:12.3452438Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-chat/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-chat", + "name": "markhiet-ai-chat", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00220700a90f-0000-4700-0000-65b7f1d80000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "OpenAI", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-chat.openai.azure.com/", + "internalId": "27e427046f534e318697786f457ddab2", + "dateCreated": "2024-01-29T18:38:01.5947079Z", + "callRateLimit": { + "rules": [ + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-chat", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "CustomerManagedKey" + }, + { + "name": "MaxFineTuneCount", + "value": "100" + }, + { + "name": "MaxRunningFineTuneCount", + "value": "1" + }, + { + "name": "MaxUserFileCount", + "value": "50" + }, + { + "name": "MaxTrainingFileSize", + "value": "100000000" + }, + { + "name": "MaxUserFileImportDurationInHours", + "value": "1" + }, + { + "name": "MaxFineTuneJobDurationInHours", + "value": "720" + }, + { + "name": "TrustedServices", + "value": "Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search" + } + ], + "endpoints": { + "OpenAI Language Model Instance API": "https://markhiet-ai-chat.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-chat.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-chat.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-chat.openai.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2024-01-29T18:38:00.8384954Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2024-01-29T18:38:00.8384954Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/markhiet-rg-testsearch/providers/Microsoft.CognitiveServices/accounts/markhiet-ai-testsearch-aiservices", + "name": "markhiet-ai-testsearch-aiservices", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00222600b3b2-0000-4700-0000-65c4fed00000\u0022", + "location": "swedencentral", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "tags": {}, + "properties": { + "endpoint": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "internalId": "b1b491470b014b439a9703fad1c47065", + "dateCreated": "2024-02-08T16:14:41.1586899Z", + "callRateLimit": { + "rules": [ + { + "key": "token", + "renewalPeriod": 1, + "count": 50, + "matchPatterns": [ + { + "path": "sts/v1.0/*", + "method": "*" + } + ] + }, + { + "key": "speech.synthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/synthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.neuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/neuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaivoicesynthesize", + "renewalPeriod": 60, + "count": 10, + "matchPatterns": [ + { + "path": "speech/aoaivoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.aoaihdvoicesynthesize", + "renewalPeriod": 60, + "count": 3, + "matchPatterns": [ + { + "path": "speech/aoaihdvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.customneuralvoicesynthesize", + "renewalPeriod": 1, + "count": 200, + "matchPatterns": [ + { + "path": "speech/customneuralvoicesynthesize", + "method": "*" + } + ] + }, + { + "key": "speech.liveavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/liveavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.livecustomavatarconnect", + "renewalPeriod": 60, + "count": 1, + "matchPatterns": [ + { + "path": "speech/livecustomavatarconnect", + "method": "*" + } + ] + }, + { + "key": "speech.conversationtranscription", + "renewalPeriod": 1, + "count": 100, + "matchPatterns": [ + { + "path": "speech/singlechannelaudioconversationtranscription", + "method": "*" + }, + { + "path": "speech/multichannelaudioconversationtranscribe", + "method": "*" + }, + { + "path": "speech/videoconversationtranscribe", + "method": "*" + } + ] + }, + { + "key": "speech.speechtotext", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "speechtotext/*", + "method": "*" + } + ] + }, + { + "key": "speech.texttospeech", + "renewalPeriod": 10, + "count": 100, + "matchPatterns": [ + { + "path": "texttospeech/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv2", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "speaker/*", + "method": "*" + }, + { + "path": "speaker-recognition/*", + "method": "*" + } + ] + }, + { + "key": "speech.speakerrecognitionv1", + "renewalPeriod": 1, + "count": 5, + "matchPatterns": [ + { + "path": "spid/*", + "method": "*" + } + ] + }, + { + "key": "container.billing", + "renewalPeriod": 10, + "count": 500, + "matchPatterns": [ + { + "path": "billing/*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "markhiet-ai-testsearch-aiservices-986720030", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + }, + { + "name": "Container", + "value": "SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization" + }, + { + "name": "Cloud", + "value": "SpeechServices.SpeakerVerification,SpeechServices.SpeakerIdentification,SpeechServices.CustomNeuralVoice" + } + ], + "endpoints": { + "Computer Vision": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "OpenAI Dall-E API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "OpenAI Whisper API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "OpenAI Model Scaleset API": "https://markhiet-ai-testsearch-aiservices-986720030.openai.azure.com/", + "Content Safety": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speech to Text": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speech to Text v3.2_internal.1": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Custom Voice": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Video Translation": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Audio Content Creation": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Custom Avatar": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Batch Avatar": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speech to Text (Standard)": "https://swedencentral.stt.speech.microsoft.com", + "Speech Services Text to Speech (Neural)": "https://swedencentral.tts.speech.microsoft.com", + "Speech Services Speaker Verification": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Speech Services Speaker Identification": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/", + "Token": "https://markhiet-ai-testsearch-aiservices-986720030.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "6ee48637-d751-4fe7-aa54-38f01126948c", + "createdByType": "Application", + "createdAt": "2024-02-08T16:14:39.4547208Z", + "lastModifiedBy": "6ee48637-d751-4fe7-aa54-38f01126948c", + "lastModifiedByType": "Application", + "lastModifiedAt": "2024-02-08T16:14:39.4547208Z" + } + }, + { + "id": "/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-lavendar-unicorn-canadaeast-rg/providers/Microsoft.CognitiveServices/accounts/aiservices-romantic-navy-gibbon", + "name": "aiservices-romantic-navy-gibbon", + "type": "Microsoft.CognitiveServices/accounts", + "etag": "\u00224d0044df-0000-0900-0000-655a559c0000\u0022", + "location": "canadaeast", + "sku": { + "name": "S0" + }, + "kind": "AIServices", + "properties": { + "endpoint": "https://aiservices-romantic-navy-gibbon.cognitiveservices.azure.com/", + "internalId": "53ca5cb8ed1040668d99b36310c0e418", + "dateCreated": "2023-11-09T00:37:13.1419662Z", + "callRateLimit": { + "rules": [ + { + "key": "ContentSafety.List", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text/blocklists*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.TextUngroundedDetection", + "renewalPeriod": 10, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text:detectungroundedness*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Text", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/text*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.ImageWithText", + "renewalPeriod": 1, + "count": 10, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/imageWithText*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Image", + "renewalPeriod": 10, + "count": 1000, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/image*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Project", + "renewalPeriod": 1, + "count": 30, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/projects*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafety.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/whitelist*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Metrics", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/metrics*", + "method": "*" + } + ] + }, + { + "key": "ContentSafetyInternal.Feature", + "renewalPeriod": 1, + "count": 100, + "dynamicThrottlingEnabled": true, + "matchPatterns": [ + { + "path": "contentsafety/internal/whitelist*", + "method": "*" + } + ] + }, + { + "key": "openai.dalle.post", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "POST" + }, + { + "path": "openai/images/*", + "method": "POST" + } + ] + }, + { + "key": "openai.dalle.other", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "dalle/*", + "method": "*" + }, + { + "path": "openai/operations/images/*", + "method": "*" + } + ] + }, + { + "key": "openai", + "renewalPeriod": 1, + "count": 30, + "matchPatterns": [ + { + "path": "openai/*", + "method": "*" + } + ] + }, + { + "key": "default", + "renewalPeriod": 1, + "count": 20, + "matchPatterns": [ + { + "path": "*", + "method": "*" + } + ] + }, + { + "key": "vision", + "renewalPeriod": 1, + "count": 15, + "matchPatterns": [ + { + "path": "computervision/*", + "method": "*" + } + ] + } + ] + }, + "isMigrated": false, + "customSubDomainName": "aiservices-romantic-navy-gibbon", + "privateEndpointConnections": [], + "publicNetworkAccess": "Enabled", + "capabilities": [ + { + "name": "VirtualNetworks" + } + ], + "endpoints": { + "Computer Vision": "https://aiservices-romantic-navy-gibbon.cognitiveservices.azure.com/", + "OpenAI Language Model Instance API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "OpenAI Dall-E API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "OpenAI Whisper API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "OpenAI Model Scaleset API": "https://aiservices-romantic-navy-gibbon.openai.azure.com/", + "Content Safety": "https://aiservices-romantic-navy-gibbon.cognitiveservices.azure.com/" + }, + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "email@domain.com", + "createdByType": "User", + "createdAt": "2023-11-09T00:37:11.8160051Z", + "lastModifiedBy": "email@domain.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-11-09T00:37:11.8160051Z" + } + } + ] + } + }, + { + "RequestUri": "https://fakeendpoint/subscriptions/e72e5254-f265-4e95-9bd2-9ee8e7329051/resourceGroups/robch-cranky-red-koala-rg/providers/Microsoft.CognitiveServices/accounts/robch-cranky-red-koala-ais/listKeys?api-version=2023-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "CommandName": "cognitiveservices account keys list", + "Connection": "close", + "Content-Length": "0", + "ParameterSetName": "--output --subscription -g -n", + "User-Agent": "AZURECLI/2.57.0 (MSI) azsdk-python-mgmt-cognitiveservices/13.5.0 Python/3.11.7 (Windows-10-10.0.22631-SP0) ai-cli 0.0.1", + "X-Forwarded-For": "127.0.0.1", + "X-Forwarded-Proto": "https", + "x-ms-client-request-id": "7601528b-c92f-11ee-9d0a-c8d9d2049b34", + "X-Real-IP": "127.0.0.1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Length": "45", + "Content-Type": "application/json; charset=utf-8", + "Date": "Sun, 11 Feb 2024 22:46:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Cache": "CONFIG_NOCACHE", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23", + "x-ms-correlation-request-id": "d641eca2-9a76-4fbb-927a-45304e9965aa", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "430d4e42-c7a1-4b2f-8e5b-ac1cc02f6129", + "x-ms-routing-request-id": "WESTUS2:20240211T224659Z:d641eca2-9a76-4fbb-927a-45304e9965aa", + "X-MSEdge-Ref": "Ref A: 2F01AE03B8B44503A71467F93A2AB6F6 Ref B: CO6AA3150217025 Ref C: 2024-02-11T22:46:58Z" + }, + "ResponseBody": { + "key1": "COGSVCSKey1", + "key2": "COGSVCSKey2" + } + } + ], + "Variables": {} +} diff --git a/tests/recordproxy/Dockerfile b/tests/recordproxy/Dockerfile new file mode 100644 index 00000000..20ef36b5 --- /dev/null +++ b/tests/recordproxy/Dockerfile @@ -0,0 +1,2 @@ +FROM acrbn.azurecr.io/nginx-recording-test-proxy:latest + diff --git a/tests/recordproxy/Dockerfile.base b/tests/recordproxy/Dockerfile.base new file mode 100644 index 00000000..493fc0f7 --- /dev/null +++ b/tests/recordproxy/Dockerfile.base @@ -0,0 +1,90 @@ +# Build stage +FROM mcr.microsoft.com/cbl-mariner/base/nginx:1.22 as builder + +# Install build dependencies +RUN tdnf update && \ + tdnf install -y tar build-essential pcre-devel openssl-devel zlib-devel dos2unix unzip && \ + rm -rf /var/lib/apt/lists/* + +RUN mkdir /OpenResty && \ + cd /OpenResty && \ + curl -L https://openresty.org/download/openresty-1.21.4.1.tar.gz | tar xz + +# Download and compile ngx_http_proxy_connect_module +RUN cd /OpenResty && \ + curl -L https://github.com/chobits/ngx_http_proxy_connect_module/archive/master.tar.gz | tar xz && \ + curl -L https://raw.githubusercontent.com/chobits/ngx_http_proxy_connect_module/master/patch/proxy_connect_rewrite_102101.patch -o proxy_connect_rewrite_102101.patch && \ + cd openresty-1.21.4.1 && \ + ./configure --with-luajit --add-module=../ngx_http_proxy_connect_module-master --with-debug --with-cc-opt=-DNGX_HAVE_RESOLVE_ON_LOCAL && \ + patch -d build/nginx-1.21.4/ -p 1 < ../proxy_connect_rewrite_102101.patch && \ + make && \ + make install && \ + rm -rf /OpenResty + +# Set up environment variables +ENV PATH="/usr/local/openresty/bin:/usr/local/openresty/luajit/bin:$PATH" +ENV LD_LIBRARY_PATH="/usr/local/openresty/luajit/lib:/usr/local/openresty/lib:$LD_LIBRARY_PATH" + +# Install LuaRocks +RUN mkdir /luarocks-src && cd /luarocks-src && \ + curl -L http://luarocks.github.io/luarocks/releases/luarocks-3.7.0.tar.gz | tar xz && \ + cd luarocks-3.7.0 && \ + ./configure --with-lua=/usr/local/openresty/luajit --lua-suffix=jit --with-lua-include=/usr/local/openresty/luajit/include/luajit-2.1 && \ + make build && \ + make install && \ + rm -rf /luarocks-src + +RUN luarocks install lua-resty-http +RUN luarocks install lua-resty-auto-ssl + +RUN mkdir /certs +COPY issue_cert.sh /certs/issue_cert.sh +# Set the script file as executable +RUN dos2unix /certs/issue_cert.sh && \ + chmod +x /certs/issue_cert.sh + +# Runtime stage +FROM mcr.microsoft.com/cbl-mariner/base/nginx:1.22 + +# Copy necessary files from the builder stage +COPY --from=builder /usr/local/openresty /usr/local/openresty +COPY --from=builder /usr/local/bin /usr/local/bin +COPY --from=builder /usr/local/share/lua /usr/local/share/lua + +# Set up environment variables +ENV PATH="/usr/local/openresty/bin:/usr/local/openresty/luajit/bin:$PATH" +ENV LD_LIBRARY_PATH="/usr/local/openresty/luajit/lib:/usr/local/openresty/lib:$LD_LIBRARY_PATH" + +# Install LuaRocks to manage Lua packages +RUN mkdir -p /etc/resty-auto-ssl/storage/file && \ + chmod -R 777 /etc/resty-auto-ssl + +# Set up directories +RUN mkdir /certs /keys /logs /lua +COPY --from=builder /certs/issue_cert.sh /certs/issue_cert.sh +COPY nginx.conf /usr/local/openresty/nginx/conf/nginx.conf +COPY storage.lua /lua +COPY headers.lua /lua + +# Create the openssl-ca.conf file +COPY openssl-ca.conf /certs/openssl-ca.conf +RUN touch /certs/index.txt && \ + echo '1000' > /certs/ca.srl + +# Create required directories +ONBUILD WORKDIR /certs + +# Generate CA OpenSSL Cert & key +ONBUILD RUN openssl genrsa -out /keys/ca.key 4096 +ONBUILD RUN openssl req -x509 -new -nodes -key /keys/ca.key -sha256 -days 3650 -subj "/C=US/ST=WA/L=Redmond/O=MSFT/OU=Test" -out /certs/ca.crt + +# Build a default cert for nginx to use +ONBUILD RUN openssl genrsa -out "test.key" 2048 +ONBUILD RUN openssl req -new -key "test.key" -out "test.csr" -subj "/C=US/ST=SomeState/L=SomeCity/O=SomeOrganization/OU=SomeDepartment/CN=azure.example.com" +ONBUILD RUN openssl x509 -req -days 365 -in "test.csr" -CA "ca.crt" -CAkey "/keys/ca.key" -CAserial ca.srl -out "test.crt" -extfile /certs/openssl-ca.conf -extensions server_cert_ext + +ONBUILD RUN openssl ca -gencrl -config /certs/openssl-ca.conf -out /certs/empty_crl.pem +ONBUILD RUN chown nobody /keys/ca.key && chown nobody /certs/ca.srl + +WORKDIR / +CMD openresty -g 'daemon off;' -c /usr/local/openresty/nginx/conf/nginx.conf diff --git a/tests/recordproxy/dev_insall.cmd b/tests/recordproxy/dev_insall.cmd new file mode 100644 index 00000000..b31cfbe6 --- /dev/null +++ b/tests/recordproxy/dev_insall.cmd @@ -0,0 +1,5 @@ +docker build -t nginx-recording-test-proxy-dev %~dp0 +docker create --name nginx -p 5004:5004 nginx-recording-test-proxy-dev +docker start nginx +curl http://localhost:5004/ca.crt > %TEMP%\ca.crt +certutil -addstore -user -f "root" %TEMP%\ca.crt \ No newline at end of file diff --git a/tests/recordproxy/headers.lua b/tests/recordproxy/headers.lua new file mode 100644 index 00000000..1b31899a --- /dev/null +++ b/tests/recordproxy/headers.lua @@ -0,0 +1,59 @@ +local function start(self, mode) + local request_method = ngx.req.get_method() + local request_uri = ngx.var.uri + local request_args = ngx.req.get_uri_args() + local request_headers = ngx.req.get_headers() + -- Forward the request to the target server + local res = ngx.location.capture("/proxy" .. request_uri, { + method = ngx.HTTP_POST, + args = request_args, + always_forward_body = true, + copy_all_vars = true, -- Copy all variables, including headers + ctx = { headers = request_headers } -- Store original request headers in context + }) + + -- Return the response from the target server + + for k, v in pairs(res.header) do + if k == "x-recording-id" then + g_recordingId = v + g_recordingMode = mode + end + ngx.header[k] = v + end + + ngx.status = res.status + ngx.print(res.body) + + ngx.log(ngx.ERR, "RECORDING ID: " .. g_recordingId .. " MODE: " .. g_recordingMode .. " mode: " .. mode) +end + +local function stop() + local request_method = ngx.req.get_method() + local request_uri = ngx.var.uri + local request_args = ngx.req.get_uri_args() + local request_headers = ngx.req.get_headers() + + -- Forward the request to the target server + local res = ngx.location.capture("/proxy" .. request_uri, { + method = ngx.HTTP_POST, + args = request_args, + always_forward_body = true, + copy_all_vars = true, -- Copy all variables, including headers + ctx = { headers = request_headers } -- Store original request headers in context + }) + + -- Return the response from the target server + + for k, v in pairs(res.header) do + ngx.header[k] = v + end + + ngx.status = res.status + ngx.print(res.body) +end + +return { + start = start, + stop = stop +} \ No newline at end of file diff --git a/tests/recordproxy/issue_cert.sh b/tests/recordproxy/issue_cert.sh new file mode 100644 index 00000000..5850a91f --- /dev/null +++ b/tests/recordproxy/issue_cert.sh @@ -0,0 +1,53 @@ +#!/bin/bash + +# Check if the required argument is provided +if [ -z "$1" ]; then + echo "Usage: $0 " + exit 1 +fi + +DOMAIN=$1 +CA_CERT="/certs/ca.crt" +CA_KEY="/keys/ca.key" +CA_SERIAL="./ca.srl" + +# Check if required files exist +if [ ! -f "${CA_CERT}" ] || [ ! -f "${CA_KEY}" ]; then + echo "Error: CA certificate or key file not found." + exit 1 +fi + +CERT_DIR="/etc/resty-auto-ssl/certs" +mkdir -p "${CERT_DIR}/${DOMAIN}" + +KEY_FILE="${CERT_DIR}/${DOMAIN}/server.key" +CSR_FILE="${CERT_DIR}/${DOMAIN}/request.csr" +CERT_FILE="${CERT_DIR}/${DOMAIN}/fullchain.pem" + +# Generate private key +openssl genrsa -out "${KEY_FILE}" 2048 2>> /tmp/issue_cert.log +if [ $? -ne 0 ]; then + echo "Error: Private key generation failed." + cat /tmp/issue_cert.log + exit 1 +fi + +# Generate CSR +openssl req -new -key "${KEY_FILE}" -out "${CSR_FILE}" -subj "/C=US/ST=SomeState/L=SomeCity/O=SomeOrganization/OU=SomeDepartment/CN=${DOMAIN}" 2>> /tmp/issue_cert.log +if [ $? -ne 0 ]; then + echo "Error: CSR generation failed." + cat /tmp/issue_cert.log + exit 1 +fi + +# Sign the certificate with your internal CA +openssl x509 -req -days 365 -in "${CSR_FILE}" -CA "${CA_CERT}" -CAkey "${CA_KEY}" -out "${CERT_FILE}" -extfile <(printf "basicConstraints=CA:FALSE\nkeyUsage=nonRepudiation,digitalSignature,keyEncipherment\ncrlDistributionPoints=URI:http://localhost:5004/empty_crl.pem") 2>> /tmp/issue_cert.log +if [ $? -ne 0 ]; then + echo "Error: Certificate signing failed." + cat /tmp/issue_cert.log + exit 1 +fi + +# Output the paths +echo "${CERT_FILE}" +echo "${KEY_FILE}" \ No newline at end of file diff --git a/tests/recordproxy/nginx.conf b/tests/recordproxy/nginx.conf new file mode 100644 index 00000000..a911c237 --- /dev/null +++ b/tests/recordproxy/nginx.conf @@ -0,0 +1,161 @@ +env TEST_PROXY_URL; + +http { + + include mime.types; + default_type application/octet-stream; + + log_format custom_log_format '[$time_local] $scheme - $x_recording_id - $x_recording_mode - $host - $hostname - $proxy_host - $request - $status - $body_bytes_sent - $http_referer - $http_user_agent'; + + # ... + error_log /logs/log debug; + access_log /logs/logfile.log custom_log_format; + + lua_shared_dict auto_ssl 1m; + lua_shared_dict auto_ssl_settings 64k; + lua_package_path "/lua/?.lua;;"; + + init_by_lua_block { + auto_ssl = (require "resty.auto-ssl").new() + local storage = require "storage" + + g_recordingId = "." + g_recordingMode = "." + + auto_ssl:set("allow_domain", function(domain, auto_ssl, ssl_options) + return true + end) + auto_ssl:set("request_domain", function(ssl, ssl_options) + local dom = ssl.server_name() + return dom + end) + + auto_ssl:init() + auto_ssl.storage = storage + } + + server { + + # This section configures a proxy server on port 80 that allows clients to request connections to ports 80 or 443. + # It then forwards all proxied traffic to port 443 in the same container. + lua_need_request_body on; + + proxy_connect; + # Allowed ports for CONNECT requests + proxy_connect_allow 80 443; + resolver local=on; + listen 5004; + server_name test-proxy-nginx; + proxy_connect_address 127.0.0.1:5005; + + location /record/start + { + content_by_lua_block { + local header_methods = require "headers" + header_methods:start("record") + } + } + + location /record/stop + { + content_by_lua_block { + local header_methods = require "headers" + header_methods:stop() + } + } + + location /playback/start + { + content_by_lua_block { + local header_methods = require "headers" + header_methods:start("playback") + } + } + + location /playback/stop + { + content_by_lua_block { + local header_methods = require "headers" + header_methods:stop() + } + } + + set_by_lua_block $test_proxy_url { + local test_proxy_url = os.getenv("TEST_PROXY_URL") + if test_proxy_url == nil then + return "http://host.docker.internal:5000" -- Set a default value if MY_VAR is not set + else + return test_proxy_url + end + } + + location /proxy/ { + internal; + rewrite ^/proxy(/.*)$ $1 break; + proxy_pass $test_proxy_url; + + } + + location /admin/ { + proxy_pass $test_proxy_url; + } + + location / + { + root /certs; + } + } + + server { + + listen 5005 ssl; + server_name _; + resolver local=on; + + ssl_certificate_by_lua_block { + local ok, err = auto_ssl:ssl_certificate() + if not ok then + ngx.log(ngx.ERR, "auto-ssl: failed to get certificate: ", err) + end + } + + # Path to your SSL certificate and private key + ssl_certificate /certs/test.crt; + ssl_certificate_key /certs/test.key; + + location / { + # Set the Nginx variable using Lua code + set_by_lua_block $x_recording_id { + return g_recordingId + } + set_by_lua_block $x_recording_mode { + return g_recordingMode + } + set_by_lua_block $test_proxy_url { + local test_proxy_url = os.getenv("TEST_PROXY_URL") + if test_proxy_url == nil then + return "http://host.docker.internal:5000" -- Set a default value if MY_VAR is not set + else + return test_proxy_url + end + } + # Append two new headers + proxy_set_header x-recording-id $x_recording_id; + proxy_set_header x-recording-mode $x_recording_mode; + + # Other proxy settings + + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Recording-Upstream-Base-Uri $scheme://$http_host; + + # Set the fixed host to proxy the request to + proxy_pass $test_proxy_url; + } + } +} + +events { + worker_connections 1024; +} \ No newline at end of file diff --git a/tests/recordproxy/openssl-ca.conf b/tests/recordproxy/openssl-ca.conf new file mode 100644 index 00000000..c75f7f66 --- /dev/null +++ b/tests/recordproxy/openssl-ca.conf @@ -0,0 +1,32 @@ +[ ca ] +default_ca = my_ca + +[ my_ca ] +dir = /certs +database = $dir/index.txt +new_certs_dir = $dir +certificate = ca.crt +private_key = /keys/ca.key +serial = $dir/serial +RANDFILE = $dir/private/.rand +default_days = 365 +default_md = sha256 +policy = my_ca_policy +crl = $dir/crl.pem +crl_extensions = crl_ext +default_crl_days = 30 + +[ my_ca_policy ] +commonName = supplied +stateOrProvinceName = supplied +countryName = supplied +emailAddress = optional +organizationName = supplied +organizationalUnitName = optional + +[ crl_ext ] +authorityKeyIdentifier=keyid:always,issuer:always +[ server_cert_ext ] +basicConstraints=CA:FALSE +keyUsage=nonRepudiation,digitalSignature,keyEncipherment +crlDistributionPoints=URI:http://localhost:5004/empty_crl.pem \ No newline at end of file diff --git a/tests/recordproxy/storage.lua b/tests/recordproxy/storage.lua new file mode 100644 index 00000000..c8c4466f --- /dev/null +++ b/tests/recordproxy/storage.lua @@ -0,0 +1,71 @@ +local storage = {} + +local function execute_command(command) + local handle = io.popen(command) + local result = handle:read("*a") + handle:close() + return result +end + +local function breakLines(input) + local iterator = string.gmatch(input, "([^\n]+)") + local matches = {} + + local i = 0 + for match in iterator do + if i == 0 then + matches["cert"] = match + elseif i == 1 then + matches["key"] = match + else + error("Too many rows returned.") + end + i = i + 1 + end + + return matches +end + +storage.get_cert = function(self, domain) + + ngx.log(ngx.DEBUG, "Getting cert for domain: " .. domain) + + local certFileNames = execute_command("/certs/issue_cert.sh " .. domain) + + if not certFileNames then + error("Did not get files returned from shell script") + end + + local parts = breakLines(certFileNames) + if not (parts["cert"] and parts["key"]) then + error("Missing cert or key in the parts table. " .. certFileNames) + end + + ngx.log(ngx.DEBUG, "Found cert key " .. parts["key"] .. " and cert " .. parts["cert"]) + + local certFile, err = io.open(parts["cert"], "r") + if not certFile then + error("Error opening cert file: " .. parts["cert"] .. " " .. (certErr or "Unknown error")) + end + + local certContent = certFile:read("*a") + certFile:close() + + local keyFile, err = io.open(parts["key"], "r") + if not keyFile then + error("Error opening key file: " .. parts["key"] .. " " .. (keyErr or "Unknown error")) + end + local keyContent = keyFile:read("*a") + keyFile:close() + + ngx.log(ngx.DEBUG, "Read key and cert content") + + local cert = {} + + cert["fullchain_pem"] = certContent + cert["privkey_pem"] = keyContent + + return cert +end + +return storage \ No newline at end of file diff --git a/tests/testframework/YamlTagHelpers.cs b/tests/testframework/YamlTagHelpers.cs index c9356c06..dd8fe868 100644 --- a/tests/testframework/YamlTagHelpers.cs +++ b/tests/testframework/YamlTagHelpers.cs @@ -89,16 +89,29 @@ private static void AddOptionalCommaSeparatedTags(Dictionary> tags, YamlMappingNode mapping) + private static void AddOptionalNameValueTags(Dictionary> tags, YamlMappingNode mapping, string keyPrefix = "") { var children = mapping?.Children; if (children == null) return; foreach (var child in children) { - var key = (child.Key as YamlScalarNode)?.Value; - var value = (child.Value as YamlScalarNode)?.Value; - AddOptionalTag(tags, key, value); + var key = keyPrefix + (child.Key as YamlScalarNode)?.Value; + + if (child.Value is YamlScalarNode) + { + var value = (child.Value as YamlScalarNode)?.Value; + AddOptionalTag(tags, key, value); + } + else if (child.Value is YamlSequenceNode || child.Value is YamlMappingNode) + { + var value = child.Value.ToJsonString(); + AddOptionalTag(tags, key, value); + } + else if(child.Value is YamlMappingNode) + { + AddOptionalNameValueTags(tags, child.Value as YamlMappingNode, $"{key}."); + } } } diff --git a/tests/testframework/YamlTestCaseParser.cs b/tests/testframework/YamlTestCaseParser.cs index 4daeca02..2b65ccb6 100644 --- a/tests/testframework/YamlTestCaseParser.cs +++ b/tests/testframework/YamlTestCaseParser.cs @@ -204,7 +204,7 @@ private static void CheckInvalidTestCaseNodes(FileInfo file, YamlMappingNode map private static bool IsValidTestCaseNode(string value) { - return ";area;class;name;cli;command;script;bash;timeout;foreach;arguments;input;expect;expect-gpt;not-expect;parallelize;simulate;skipOnFailure;tag;tags;workingDirectory;".IndexOf($";{value};") >= 0; + return ";area;class;name;cli;command;script;bash;timeout;foreach;arguments;input;expect;expect-gpt;not-expect;parallelize;simulate;skipOnFailure;tag;tags;workingDirectory;sanitize;".IndexOf($";{value};") >= 0; } private static void SetTestCaseProperty(TestCase test, string propertyName, YamlMappingNode mapping, string mappingName) diff --git a/tests/testrunner/Properties/launchSettings.json b/tests/testrunner/Properties/launchSettings.json new file mode 100644 index 00000000..292a4e91 --- /dev/null +++ b/tests/testrunner/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "YamlTestRunner": { + "commandName": "Project", + "commandLineArgs": "list --file D:\\git\\azure-ai-cli\\tests\\test3.yaml" + } + } +} \ No newline at end of file From 0230b482fc20ea3d9105656820458415f42df70c Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:35:23 -0800 Subject: [PATCH 08/14] Fixed ADO create script (#198) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script --------- Co-authored-by: Chris Schraer --- scripts/ADOCreateFeature.ps1 | 45 +++++++++++++----------------------- 1 file changed, 16 insertions(+), 29 deletions(-) diff --git a/scripts/ADOCreateFeature.ps1 b/scripts/ADOCreateFeature.ps1 index fb6e8f45..fe6466a0 100644 --- a/scripts/ADOCreateFeature.ps1 +++ b/scripts/ADOCreateFeature.ps1 @@ -19,45 +19,32 @@ param ( ) # Define the URL for the REST API call -$url = "https://dev.azure.com/$organization/$project/_apis/wit/workitems/`$$workItemType?api-version=6.0" +$url = "https://dev.azure.com/$organization/$project/_apis/wit/workitems/`$$($workItemType)?api-version=7.1" +Write-Host "URL: $url" -# Define the body of the REST API call -$body = @" -[ - { - "op": "add", - "path": "/fields/System.Title", - "value": "$title" - }, - { - "op": "add", - "path": "/fields/System.Description", - "value": "$description" - }, - { - "op": "add", - "path": "/fields/System.IterationPath", - "value": "$iterationPath" - }, - { - "op": "add", - "path": "/fields/System.AreaPath", - "value": "$areaPath" - } -] -"@ +$body = @( + [ordered] @{ op = 'add'; path = '/fields/System.Title'; value = "$title" } + [ordered] @{ op = 'add'; path = '/fields/System.Description'; value = "$description" } + [ordered] @{ op = 'add'; path = '/fields/System.IterationPath'; value = $iterationPath } + [ordered] @{ op = 'add'; path = '/fields/System.AreaPath'; value = $areaPath } +) # Convert the body to JSON -$bodyJson = $body | ConvertTo-Json +$bodyJson = ConvertTo-Json -InputObject $body +Write-Host "Body: $bodyJson" + +$B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("`:$pat")) # Define the headers for the REST API call $headers = @{ "Content-Type" = "application/json-patch+json" - "Authorization" = "Bearer $pat" + "Authorization" = "Basic $B64Pat" } # Make the REST API call to create the work item $response = Invoke-RestMethod -Uri $url -Method Post -Body $bodyJson -Headers $headers +Write-Host "Work item created with response: $response" +Write-Host "Work item created with ID: $($response.id)" # Output the ID of the new work item -Write-Output "New work item ID: $($response.id)" +$($response.id) From 74fa22886ef71590622fc31c51c87f52f973361e Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:44:51 -0800 Subject: [PATCH 09/14] removing prints from create (#201) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script * removing prints from create * updated workflow to not erase issue body --------- Co-authored-by: Chris Schraer --- .github/workflows/ado-sync.yaml | 2 +- scripts/ADOCreateFeature.ps1 | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ado-sync.yaml b/.github/workflows/ado-sync.yaml index 6b538b2f..bc294d5c 100644 --- a/.github/workflows/ado-sync.yaml +++ b/.github/workflows/ado-sync.yaml @@ -25,5 +25,5 @@ jobs: $result = pwsh -File ./scripts/ADOCreateFeature.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" $adoWorkItemLink = pwsh -File ./scripts/ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" if ($adoWorkItemLink -eq 0){ - pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.number }} -newDescription "AB#$result" + pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.number }} -newDescription "${{ github.event.issue.body }}\nAB#$result" } diff --git a/scripts/ADOCreateFeature.ps1 b/scripts/ADOCreateFeature.ps1 index fe6466a0..2884918f 100644 --- a/scripts/ADOCreateFeature.ps1 +++ b/scripts/ADOCreateFeature.ps1 @@ -20,7 +20,6 @@ param ( # Define the URL for the REST API call $url = "https://dev.azure.com/$organization/$project/_apis/wit/workitems/`$$($workItemType)?api-version=7.1" -Write-Host "URL: $url" $body = @( [ordered] @{ op = 'add'; path = '/fields/System.Title'; value = "$title" } @@ -31,7 +30,6 @@ $body = @( # Convert the body to JSON $bodyJson = ConvertTo-Json -InputObject $body -Write-Host "Body: $bodyJson" $B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("`:$pat")) From fd5823aedd12036a65ffb78ab82abf12883c8709 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:50:19 -0800 Subject: [PATCH 10/14] fixing workflow minor issues (#203) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script * removing prints from create * updated workflow to not erase issue body * handling empty description and newlines better --------- Co-authored-by: Chris Schraer --- .github/workflows/ado-sync.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ado-sync.yaml b/.github/workflows/ado-sync.yaml index bc294d5c..1812820c 100644 --- a/.github/workflows/ado-sync.yaml +++ b/.github/workflows/ado-sync.yaml @@ -22,8 +22,12 @@ jobs: echo "Work item already exists" exit 0 } - $result = pwsh -File ./scripts/ADOCreateFeature.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "${{ github.event.issue.body }}" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" + $description = " " + if (${{ github.event.issue.body }} -ne $null) { + $description = "${{ github.event.issue.body }}" + } + $result = pwsh -File ./scripts/ADOCreateFeature.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "$description" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" $adoWorkItemLink = pwsh -File ./scripts/ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" if ($adoWorkItemLink -eq 0){ - pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.number }} -newDescription "${{ github.event.issue.body }}\nAB#$result" + pwsh -File ./scripts/GithubUpdateIssue.ps1 -token "${{ secrets.GH_PERSONAL_ACCESS_TOKEN}}" -owner "Azure" -repo "azure-ai-cli" -issueNumber ${{ github.event.issue.number }} -newDescription "${{ github.event.issue.body }}
AB#$result" } From 4e8bf94a360e6110ab60c5849eec4e345a5685e2 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:54:22 -0800 Subject: [PATCH 11/14] handling null string value (#205) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script * removing prints from create * updated workflow to not erase issue body * handling empty description and newlines better * handling null string value --------- Co-authored-by: Chris Schraer --- .github/workflows/ado-sync.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ado-sync.yaml b/.github/workflows/ado-sync.yaml index 1812820c..3208fb08 100644 --- a/.github/workflows/ado-sync.yaml +++ b/.github/workflows/ado-sync.yaml @@ -23,7 +23,7 @@ jobs: exit 0 } $description = " " - if (${{ github.event.issue.body }} -ne $null) { + if ("${{ github.event.issue.body }}") { $description = "${{ github.event.issue.body }}" } $result = pwsh -File ./scripts/ADOCreateFeature.ps1 -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" -title "${{ github.event.issue.title }}" -description "$description" -organization "msdata" -project "Vienna" -workItemType "Feature" -iterationPath "Vienna\\Backlog" -areaPath "Vienna\\Experiences\\Core SDK\\AI CLI" From 91aed17120a9022474cb8721fef817c864c0b887 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 10:00:49 -0800 Subject: [PATCH 12/14] removing more writes (#208) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script * removing prints from create * updated workflow to not erase issue body * handling empty description and newlines better * handling null string value * removing more writes --------- Co-authored-by: Chris Schraer --- scripts/ADOCreateFeature.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ADOCreateFeature.ps1 b/scripts/ADOCreateFeature.ps1 index 2884918f..cc8ecb90 100644 --- a/scripts/ADOCreateFeature.ps1 +++ b/scripts/ADOCreateFeature.ps1 @@ -41,8 +41,6 @@ $headers = @{ # Make the REST API call to create the work item $response = Invoke-RestMethod -Uri $url -Method Post -Body $bodyJson -Headers $headers -Write-Host "Work item created with response: $response" -Write-Host "Work item created with ID: $($response.id)" # Output the ID of the new work item $($response.id) From cc22b4d4f89c8125dda8b207222b99741af81f73 Mon Sep 17 00:00:00 2001 From: Christopher Schraer <32145632+chschrae@users.noreply.github.com> Date: Tue, 13 Feb 2024 10:49:05 -0800 Subject: [PATCH 13/14] Updated Update script to correctly update features (#212) * Fixed script paths * Fixing ADO script names and issue number * Fixed json building in create script * removing prints from create * updated workflow to not erase issue body * handling empty description and newlines better * handling null string value * removing more writes * Updated ADO feature update to work properly --------- Co-authored-by: Chris Schraer --- scripts/ADOUpdateFeature.ps1 | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/scripts/ADOUpdateFeature.ps1 b/scripts/ADOUpdateFeature.ps1 index ebcfd281..7ab50e6c 100644 --- a/scripts/ADOUpdateFeature.ps1 +++ b/scripts/ADOUpdateFeature.ps1 @@ -7,21 +7,22 @@ param( ) # Map the GitHub issue state to an ADO work item state -$adoState = if ($githubIssue.state -eq "open") { "New" } -elseif ($githubIssue.state -eq "closed") { "Done" } +$adoState = if ($newState -eq "open") { "New" } +elseif ($newState -eq "closed") { "Done" } else { - Write-Host "Unknown GitHub issue state: $($githubIssue.state)" + Write-Host "Unknown GitHub issue state: $($newState)" exit 0 } -$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($pat)")) -$headers = @{Authorization=("Basic {0}" -f $base64AuthInfo)} +$B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("`:$pat")) +$headers = @{ + "Authorization" = "Basic $B64Pat" +} -$body = @{ - id = $adoWorkItemId - fields = @{ - "System.State" = $adoState - } -} | ConvertTo-Json +$body = @( + [ordered] @{ op = 'add'; path = '/fields/System.State'; value = "$adoState" } +) +# Convert the body to JSON +$bodyJson = ConvertTo-Json -InputObject $body -Invoke-RestMethod -Uri "https://dev.azure.com/$organization/$project/_apis/wit/workitems/$workItemId?api-version=6.0" -Method Patch -Body $body -ContentType "application/json-patch+json" -Headers $adoHeaders +Invoke-RestMethod -Uri "https://dev.azure.com/$organization/$project/_apis/wit/workitems/$($workItemId)?api-version=7.1" -Method Patch -Body $bodyJson -ContentType "application/json-patch+json" -Headers $headers From 41c30dda4bb71fc6a03c934edc1623c91390991c Mon Sep 17 00:00:00 2001 From: Chris Schraer Date: Tue, 13 Feb 2024 10:57:32 -0800 Subject: [PATCH 14/14] fix logic error in workflow --- .github/workflows/sync-to-ado.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-ado.yaml b/.github/workflows/sync-to-ado.yaml index af30c415..c5a79722 100644 --- a/.github/workflows/sync-to-ado.yaml +++ b/.github/workflows/sync-to-ado.yaml @@ -20,6 +20,6 @@ jobs: shell: pwsh run: | $adoWorkItemLink = pwsh -File ./scripts/ADOGetADOLinkNumber.ps1 "${{ github.event.issue.body }}" - if ($adoWorkItemLink -eq 0){ + if ($adoWorkItemLink -ne 0){ pwsh -File ./scripts/ADOUpdateFeature.ps1 -organization "msdata" -project "Vienna" -pat "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN}}" -workItemId "$adoWorkItemLink" -newState "${{ github.event.issue.state }}" }