Az Powershell コマンドを使用して、apim から操作を削除したいと考えています。誰も方法を知っていますか?私は Remove-AzApiManagementOperation のドキュメントを見ています これは与えられた例です:
Remove-AzApiManagementOperation -Context $apimContext -ApiId "0123456789" -OperationId "9876543210" -Force
次のコードを使用して operationID を取得しようとしましたが、エラーが発生し続けます。
Get-AzApiManagementOperation -Context $apimContext -ApiId $APIId -OperationId "Operation003"
「Operation003」はここのオペレーションの名前ですか?自分の操作に付けられた名前を見つけるにはどうすればよいですか? 私が見るのは私のApi ...「MyTestService」と「CreateCustomer」である私の操作だけです
成功した人はいますか?どんな情報でも大歓迎です。ありがとう
更新:これを試しました
$AllOperations = Get-AzApiManagementOperation -Context $ApiMgmtContext -ApiId $ExistingAzureApi.ApiId Write-Host $AllOperations
出力に表示されるのは Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementOperation だけです
PS でこのオブジェクトのプロパティを取得するにはどうすればよいですか? $AllOperations.OperationCollection[0].Name ????