├── .azure-pipelines ├── credscan-suppressions.json ├── daily-build.yml ├── pr-validation.yml ├── security-scan.yml └── test-module-upgrade.yml ├── .default-eslintrc.yaml ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── postcreate.sh ├── .eslintignore ├── .gitattributes ├── .github ├── copilot-instructions.md └── workflows │ ├── publish.yml │ ├── test-emitter.yml │ └── test-sdk.yml ├── .gitignore ├── .scripts ├── cmpclass.ps1 ├── for-each.js ├── function-compare.ps1 ├── generate-tests.ps1 ├── generate.ps1 ├── interactive-testserver.ps1 ├── npm-run.js ├── publish.yaml ├── run-tests.ps1 ├── run.ps1 ├── set-versions.js ├── sync-versions.js ├── tests.ps1 ├── verify-install.ps1 ├── verify-pull-request.yaml └── watch.js ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── SECURITY.md ├── common ├── config │ └── rush │ │ ├── .npmrc │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── pnpm-lock.yaml │ │ └── version-policies.json └── scripts │ ├── install-run-rush-pnpm.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ └── install-run.js ├── docs ├── building-the-plugin.md ├── conformance-tests.md ├── customization.md ├── debugging-modules.md ├── default-directory-layout.md ├── development.md ├── directives.md ├── features-of-v4.md ├── metadata.md ├── migration-from-v3-to-v4.md ├── options.md ├── packaging-the-module.md ├── plugin-architecture.md ├── readme.md ├── release-notes.md ├── repository-layout.md ├── samples │ ├── readme.md │ ├── timeswire │ │ ├── readme.md │ │ └── timeswire.yaml │ └── xkcd │ │ ├── pic.png │ │ ├── readme.md │ │ └── xkcd.yaml ├── scenario-cmdlets.md └── testing-with-pester.md ├── package.json ├── packages └── typespec-powershell │ ├── .eslintrc.yml │ ├── LICENSE │ ├── REAME.md │ ├── configuration.yaml │ ├── package.json │ ├── prettierrc.yaml │ ├── src │ ├── convertor │ │ └── convertor.ts │ ├── emitter.ts │ ├── index.ts │ ├── lib.ts │ ├── testing │ │ └── index.ts │ ├── types │ │ └── interfaces.ts │ └── utils │ │ ├── clientUtils.ts │ │ ├── modelUtils.ts │ │ ├── namespaceUtils.ts │ │ ├── operationUtil.ts │ │ └── pageUtils.ts │ ├── test │ ├── hello.test.ts │ └── test-host.ts │ └── tsconfig.json ├── powershell ├── .eslintignore ├── .eslintrc.yaml ├── .npmignore ├── LICENSE ├── autorest-configuration-for-sdk.md ├── autorest-configuration.md ├── changelog.md ├── cmdlets │ ├── class.ts │ ├── namespace.ts │ └── parameter.ts ├── enums │ └── namespace.ts ├── exports.ts ├── file-formats │ ├── md-file.ts │ ├── psd-file.ts │ └── psscript-file.ts ├── generators │ ├── AssemblyInfo.ts │ ├── csproj.ts │ ├── gitattributes.ts │ ├── gitignore.ts │ ├── inputhandler.custom.ts │ ├── nuspec.ts │ ├── psm1.custom.ts │ ├── psm1.internal.ts │ ├── psm1.ts │ ├── readme.ts │ └── script-cmdlet.ts ├── internal │ ├── name-inferrer.ts │ ├── powershell-declarations.ts │ ├── project.ts │ ├── state.ts │ └── verbs.ts ├── llcsharp │ ├── clientruntime.ts │ ├── code-model.ts │ ├── csharp-declarations.ts │ ├── enums │ │ ├── enum.ts │ │ └── namespace.ts │ ├── exports.ts │ ├── extended-variable.ts │ ├── generator.ts │ ├── messages.ts │ ├── model │ │ ├── idictionary.ts │ │ ├── interface.ts │ │ ├── model-class-dictionary.ts │ │ ├── model-class-json.ts │ │ ├── model-class-serializer.ts │ │ ├── model-class.ts │ │ ├── namespace.ts │ │ └── property.ts │ ├── operation │ │ ├── api-class.ts │ │ ├── method.ts │ │ ├── namespace.ts │ │ └── parameter.ts │ ├── project.ts │ ├── schema │ │ ├── Uuid.ts │ │ ├── array.ts │ │ ├── binary.ts │ │ ├── boolean.ts │ │ ├── byte-array.ts │ │ ├── char.ts │ │ ├── date-time.ts │ │ ├── date.ts │ │ ├── duration.ts │ │ ├── enum.ts │ │ ├── extended-type-declaration.ts │ │ ├── fixed-array.ts │ │ ├── integer.ts │ │ ├── object.ts │ │ ├── password.ts │ │ ├── primitive.ts │ │ ├── schema-resolver.ts │ │ ├── string.ts │ │ └── uri.ts │ └── validations.ts ├── main.ts ├── models │ └── model-extensions.ts ├── module │ ├── module-class.ts │ └── module-namespace.ts ├── package.json ├── plugins │ ├── add-azure-completers-v2.ts │ ├── create-commands-v2.ts │ ├── cs-namer-v2.ts │ ├── llcsharp-v2.ts │ ├── modifiers-v2.ts │ ├── plugin-create-inline-properties.ts │ ├── plugin-tweak-m4-model.ts │ ├── plugin-tweak-model-azure-v2.ts │ ├── plugin-tweak-model.ts │ ├── powershell-v2.ts │ ├── ps-namer-v2.ts │ ├── sdk-create-inline-properties.ts │ ├── sdk-cs-namer.ts │ ├── sdk-cs-simplifier.ts │ ├── sdk-generate.ts │ ├── sdk-modifiers.ts │ └── sdk-tweak-model.ts ├── readme.md ├── resources │ ├── assets │ │ ├── build-module.ps1 │ │ ├── check-dependencies.ps1 │ │ ├── create-model-cmdlets.ps1 │ │ ├── custom │ │ │ └── README.md │ │ ├── docs │ │ │ └── README.md │ │ ├── examples │ │ │ └── README.md │ │ ├── export-surface.ps1 │ │ ├── exports │ │ │ └── README.md │ │ ├── generate-help.ps1 │ │ ├── generate-portal-ux.ps1 │ │ ├── how-to.md │ │ ├── internal │ │ │ └── README.md │ │ ├── license.txt │ │ ├── pack-module.ps1 │ │ ├── resources │ │ │ └── README.md │ │ ├── run-module.ps1 │ │ ├── test-module.ps1 │ │ ├── test │ │ │ ├── README.md │ │ │ └── loadEnv.ps1 │ │ └── tools │ │ │ └── Resources │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── custom │ │ │ └── New-AzDeployment.ps1 │ │ │ ├── docs │ │ │ └── README.md │ │ │ ├── examples │ │ │ └── README.md │ │ │ ├── how-to.md │ │ │ ├── license.txt │ │ │ ├── resources │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ ├── ModelSurface.md │ │ │ └── README.md │ │ │ └── test │ │ │ └── README.md │ ├── built-time-cmdlets.csproj │ ├── built-time-cmdlets.sln │ ├── modules │ │ └── Az.Accounts │ │ │ └── 2.13.1 │ │ │ ├── Accounts.format.ps1xml │ │ │ ├── Accounts.generated.format.ps1xml │ │ │ ├── Accounts.types.ps1xml │ │ │ ├── Az.Accounts.nuspec │ │ │ ├── Az.Accounts.psd1 │ │ │ ├── Az.Accounts.psm1 │ │ │ ├── FuzzySharp.dll │ │ │ ├── Hyak.Common.dll │ │ │ ├── Microsoft.ApplicationInsights.dll │ │ │ ├── Microsoft.Azure.Common.dll │ │ │ ├── Microsoft.Azure.PowerShell.AssemblyLoading.dll │ │ │ ├── Microsoft.Azure.PowerShell.Authentication.Abstractions.dll │ │ │ ├── Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll │ │ │ ├── Microsoft.Azure.PowerShell.Authentication.dll │ │ │ ├── Microsoft.Azure.PowerShell.AuthenticationAssemblyLoadContext.dll │ │ │ ├── Microsoft.Azure.PowerShell.Authenticators.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Aks.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Authorization.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Compute.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.KeyVault.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Monitor.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Network.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.ResourceManager.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Storage.Management.dll │ │ │ ├── Microsoft.Azure.PowerShell.Clients.Websites.dll │ │ │ ├── Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll │ │ │ ├── Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll-Help.xml │ │ │ ├── Microsoft.Azure.PowerShell.Common.Share.dll │ │ │ ├── Microsoft.Azure.PowerShell.Common.dll │ │ │ ├── Microsoft.Azure.PowerShell.Storage.dll │ │ │ ├── Microsoft.Azure.PowerShell.Strategies.dll │ │ │ ├── Microsoft.Rest.ClientRuntime.Azure.dll │ │ │ ├── Microsoft.Rest.ClientRuntime.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.DataMovement.dll │ │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ │ ├── PostImportScripts │ │ │ └── LoadAuthenticators.ps1 │ │ │ ├── StartupScripts │ │ │ ├── AzError.ps1 │ │ │ └── InitializeAssemblyResolver.ps1 │ │ │ ├── [Content_Types].xml │ │ │ ├── _rels │ │ │ └── .rels │ │ │ ├── en-US │ │ │ └── about_az.help.txt │ │ │ ├── lib │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── Azure.Core.dll │ │ │ │ └── Microsoft.Identity.Client.dll │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Identity.Client.Extensions.Msal.dll │ │ │ ├── netfx │ │ │ │ ├── Azure.Core.dll │ │ │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ ├── System.Reflection.DispatchProxy.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Security.Cryptography.Cng.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ └── System.Xml.ReaderWriter.dll │ │ │ └── netstandard2.0 │ │ │ │ ├── Azure.Identity.BrokeredAuthentication.dll │ │ │ │ ├── Azure.Identity.dll │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Microsoft.Identity.Client.Broker.dll │ │ │ │ ├── Microsoft.Identity.Client.NativeInterop.dll │ │ │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ │ │ ├── System.Buffers.dll │ │ │ │ ├── System.Memory.Data.dll │ │ │ │ ├── System.Memory.dll │ │ │ │ ├── System.Net.Http.WinHttpHandler.dll │ │ │ │ ├── System.Private.ServiceModel.dll │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ ├── System.Security.Permissions.dll │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ ├── System.ServiceModel.Primitives.dll │ │ │ │ ├── System.Text.Json.dll │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ ├── msalruntime.dll │ │ │ │ ├── msalruntime_arm64.dll │ │ │ │ └── msalruntime_x86.dll │ │ │ └── package │ │ │ └── services │ │ │ └── metadata │ │ │ └── core-properties │ │ │ └── f9ac9c2e40914e78a646a7b0b997403b.psmdcp │ ├── psruntime │ │ ├── AsyncCommandRuntime.cs │ │ ├── AsyncJob.cs │ │ ├── AsyncOperationResponse.cs │ │ ├── Attributes │ │ │ ├── ExternalDocsAttribute.cs │ │ │ └── PSArgumentCompleterAttribute.cs │ │ ├── BuildTime │ │ │ ├── Cmdlets │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ ├── ExportPsd1.cs │ │ │ │ ├── ExportTestStub.cs │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ └── GetScriptCmdlet.cs │ │ │ ├── CollectionExtensions.cs │ │ │ ├── MarkdownRenderer.cs │ │ │ ├── Models │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ └── PsProxyTypes.cs │ │ │ ├── PsAttributes.cs │ │ │ ├── PsExtensions.cs │ │ │ ├── PsHelpers.cs │ │ │ ├── StringExtensions.cs │ │ │ └── XmlExtensions.cs │ │ ├── Debugging.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EventDataExtensions.cs │ │ ├── EventsExtensions.cs │ │ ├── HttpPipeline.cs │ │ ├── HttpPipelineMocking.ps1 │ │ ├── MessageAttribute.cs │ │ ├── MessageAttributeHelper.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── TypeConverterExtensions.cs │ ├── runtime │ │ └── csharp │ │ │ ├── client │ │ │ ├── CmdInfoHandler.cs │ │ │ ├── Context.cs │ │ │ ├── Extensions.cs │ │ │ ├── IAssociativeArray.cs │ │ │ ├── IHeaderSerializable.cs │ │ │ ├── InfoAttribute.cs │ │ │ ├── InputHandler.cs │ │ │ ├── Method.cs │ │ │ ├── SerializationMode.cs │ │ │ └── UndeclaredResponseException.cs │ │ │ ├── json │ │ │ ├── Conversions │ │ │ │ ├── ConversionException.cs │ │ │ │ ├── IJsonConverter.cs │ │ │ │ ├── Instances │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ └── UriConverter.cs │ │ │ │ ├── JsonConverter.cs │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ └── StringLikeConverter.cs │ │ │ ├── Customizations │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ ├── JsonArray.cs │ │ │ │ ├── JsonBoolean.cs │ │ │ │ ├── JsonNode.cs │ │ │ │ ├── JsonNumber.cs │ │ │ │ ├── JsonObject.cs │ │ │ │ ├── JsonString.cs │ │ │ │ └── XNodeArray.cs │ │ │ ├── Helpers │ │ │ │ ├── Extensions │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ ├── Seperator.cs │ │ │ │ ├── TypeDetails.cs │ │ │ │ └── XHelper.cs │ │ │ ├── Iso │ │ │ │ └── IsoDate.cs │ │ │ ├── JsonType.cs │ │ │ ├── Models │ │ │ │ ├── JsonMember.cs │ │ │ │ ├── JsonModel.cs │ │ │ │ └── JsonModelCache.cs │ │ │ ├── Nodes │ │ │ │ ├── Collections │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ ├── XList.cs │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ └── XSet.cs │ │ │ │ ├── JsonBoolean.cs │ │ │ │ ├── JsonDate.cs │ │ │ │ ├── JsonNode.cs │ │ │ │ ├── JsonNumber.cs │ │ │ │ ├── JsonObject.cs │ │ │ │ ├── JsonString.cs │ │ │ │ ├── XBinary.cs │ │ │ │ └── XNull.cs │ │ │ ├── Parser │ │ │ │ ├── Exceptions │ │ │ │ │ └── ParseException.cs │ │ │ │ ├── JsonParser.cs │ │ │ │ ├── JsonToken.cs │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ ├── Location.cs │ │ │ │ ├── Readers │ │ │ │ │ └── SourceReader.cs │ │ │ │ └── TokenReader.cs │ │ │ ├── Serialization │ │ │ │ ├── JsonSerializer.cs │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ └── SerializationOptions.cs │ │ │ └── Writers │ │ │ │ └── JsonWriter.cs │ │ │ ├── pipeline │ │ │ ├── EventData.cs │ │ │ ├── EventListener.cs │ │ │ ├── Events.cs │ │ │ ├── ISendAsync.cs │ │ │ ├── PipelineMocking.cs │ │ │ ├── Response.cs │ │ │ └── delegates.cs │ │ │ └── xml │ │ │ └── IXmlSerializable.cs │ ├── signing │ │ └── MSSharedLibKey.snk │ ├── templates │ │ ├── azureMethod.ejs │ │ ├── azureMethodGroup.ejs │ │ ├── azureServiceClient.ejs │ │ ├── enum.ejs │ │ ├── exception.ejs │ │ ├── extensionMethod.ejs │ │ ├── extensions.ejs │ │ ├── longRunningOperationMethod.ejs │ │ ├── method.ejs │ │ ├── methodBodyRestCall.ejs │ │ ├── methodGroupInterface.ejs │ │ ├── methodGroupInterfaceBody.ejs │ │ ├── model.ejs │ │ ├── page.ejs │ │ ├── serviceClientBody.ejs │ │ └── serviceClientInterface.ejs │ └── utils │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ └── Unprotect-SecureString.ps1 ├── sdk │ ├── project.ts │ ├── state.ts │ └── utility.ts ├── test │ ├── noun-cleaning.ts │ ├── operationId-inferring.ts │ ├── resources │ │ ├── operations │ │ │ ├── config.yaml │ │ │ ├── model.yaml │ │ │ └── operation-ids.txt │ │ ├── service-names.txt │ │ └── titles.txt │ ├── test-example.ts │ └── test-service-name.ts ├── tsconfig.json └── utils │ ├── PwshModel.ts │ ├── SdkModel.ts │ ├── TrieNode.ts │ ├── code-namer.ts │ ├── command-operation.ts │ ├── components.ts │ ├── extensions.ts │ ├── http-definitions.ts │ ├── http-operation.ts │ ├── info.ts │ ├── model-state.ts │ ├── powershell-comment.ts │ ├── programatic-operation.ts │ ├── resolve-conflicts.ts │ ├── resourceName.ts │ ├── schema.ts │ ├── security-scheme.ts │ ├── sort-parameters.ts │ ├── tsp-generator.ts │ ├── tsp-host.ts │ └── uid.ts ├── readme.md ├── rush.json ├── samples ├── TimesWire │ ├── generated │ │ ├── private │ │ │ └── custom │ │ │ │ └── Module.cs │ │ └── tests │ │ │ └── get-article.tests.ps1 │ ├── readme.md │ └── timeswire.yaml └── Xkcd │ └── xkcd.yaml ├── tests-upgrade ├── tests-emitter │ ├── AppComplianceAutomation.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-06-27 │ │ │ │ ├── Evidence_CreateOrUpdate.json │ │ │ │ ├── Evidence_Delete.json │ │ │ │ ├── Evidence_Download.json │ │ │ │ ├── Evidence_Get.json │ │ │ │ ├── Evidence_ListByReport.json │ │ │ │ ├── ListInUseStorageAccountsWithSubscriptions.json │ │ │ │ ├── ListInUseStorageAccountsWithoutSubscriptions.json │ │ │ │ ├── Onboard.json │ │ │ │ ├── Operations_List.json │ │ │ │ ├── Report_CheckNameAvailability.json │ │ │ │ ├── Report_CreateOrUpdate.json │ │ │ │ ├── Report_Delete.json │ │ │ │ ├── Report_Fix.json │ │ │ │ ├── Report_Get.json │ │ │ │ ├── Report_GetCollectionCount.json │ │ │ │ ├── Report_GetOverviewStatus.json │ │ │ │ ├── Report_GetScopingQuestions.json │ │ │ │ ├── Report_List.json │ │ │ │ ├── Report_NestedResourceCheckNameAvailability_Report_Evidence_Check_Name_Availability.json │ │ │ │ ├── Report_NestedResourceCheckNameAvailability_Report_Snapshot_Check_Name_Availability.json │ │ │ │ ├── Report_NestedResourceCheckNameAvailability_Report_Webhook_Check_Name_Availability.json │ │ │ │ ├── Report_SyncCertRecord.json │ │ │ │ ├── Report_Update.json │ │ │ │ ├── Report_Verify.json │ │ │ │ ├── ScopingConfiguration_CreateOrUpdate.json │ │ │ │ ├── ScopingConfiguration_Delete.json │ │ │ │ ├── ScopingConfiguration_Get.json │ │ │ │ ├── ScopingConfiguration_List.json │ │ │ │ ├── Snapshot_Download_Snapshot_Download_Compliance_Detailed_Pdf_Report.json │ │ │ │ ├── Snapshot_Download_Snapshot_Download_Compliance_Pdf_Report.json │ │ │ │ ├── Snapshot_Download_Snapshot_Download_Compliance_Report.json │ │ │ │ ├── Snapshot_Download_Snapshot_Download_Resource_List.json │ │ │ │ ├── Snapshot_Get.json │ │ │ │ ├── Snapshot_List.json │ │ │ │ ├── TriggerEvaluation.json │ │ │ │ ├── Webhook_CreateOrUpdate.json │ │ │ │ ├── Webhook_Delete.json │ │ │ │ ├── Webhook_Get.json │ │ │ │ ├── Webhook_List.json │ │ │ │ └── Webhook_Update.json │ │ ├── main.tsp │ │ ├── models │ │ │ └── models.tsp │ │ ├── resources │ │ │ ├── EvidenceResource.tsp │ │ │ ├── ReportResource.tsp │ │ │ ├── ScopingConfigurationResource.tsp │ │ │ ├── SnapshotResource.tsp │ │ │ └── WebhookResource.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.AppComplianceAutomation.csproj │ │ │ ├── Az.AppComplianceAutomation.nuspec │ │ │ ├── Az.AppComplianceAutomation.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.AppComplianceAutomation.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── AppComplianceAutomationToolForMicrosoft365.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AppComplianceAutomationIdentity.PowerShell.cs │ │ │ │ │ │ ├── AppComplianceAutomationIdentity.TypeConverter.cs │ │ │ │ │ │ ├── AppComplianceAutomationIdentity.cs │ │ │ │ │ │ ├── AppComplianceAutomationIdentity.json.cs │ │ │ │ │ │ ├── Category.PowerShell.cs │ │ │ │ │ │ ├── Category.TypeConverter.cs │ │ │ │ │ │ ├── Category.cs │ │ │ │ │ │ ├── Category.json.cs │ │ │ │ │ │ ├── CertSyncRecord.PowerShell.cs │ │ │ │ │ │ ├── CertSyncRecord.TypeConverter.cs │ │ │ │ │ │ ├── CertSyncRecord.cs │ │ │ │ │ │ ├── CertSyncRecord.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.json.cs │ │ │ │ │ │ ├── ComplianceReportItem.PowerShell.cs │ │ │ │ │ │ ├── ComplianceReportItem.TypeConverter.cs │ │ │ │ │ │ ├── ComplianceReportItem.cs │ │ │ │ │ │ ├── ComplianceReportItem.json.cs │ │ │ │ │ │ ├── ComplianceResult.PowerShell.cs │ │ │ │ │ │ ├── ComplianceResult.TypeConverter.cs │ │ │ │ │ │ ├── ComplianceResult.cs │ │ │ │ │ │ ├── ComplianceResult.json.cs │ │ │ │ │ │ ├── Control.PowerShell.cs │ │ │ │ │ │ ├── Control.TypeConverter.cs │ │ │ │ │ │ ├── Control.cs │ │ │ │ │ │ ├── Control.json.cs │ │ │ │ │ │ ├── ControlFamily.PowerShell.cs │ │ │ │ │ │ ├── ControlFamily.TypeConverter.cs │ │ │ │ │ │ ├── ControlFamily.cs │ │ │ │ │ │ ├── ControlFamily.json.cs │ │ │ │ │ │ ├── ControlSyncRecord.PowerShell.cs │ │ │ │ │ │ ├── ControlSyncRecord.TypeConverter.cs │ │ │ │ │ │ ├── ControlSyncRecord.cs │ │ │ │ │ │ ├── ControlSyncRecord.json.cs │ │ │ │ │ │ ├── DownloadResponse.PowerShell.cs │ │ │ │ │ │ ├── DownloadResponse.TypeConverter.cs │ │ │ │ │ │ ├── DownloadResponse.cs │ │ │ │ │ │ ├── DownloadResponse.json.cs │ │ │ │ │ │ ├── DownloadResponseComplianceDetailedPdfReport.PowerShell.cs │ │ │ │ │ │ ├── DownloadResponseComplianceDetailedPdfReport.TypeConverter.cs │ │ │ │ │ │ ├── DownloadResponseComplianceDetailedPdfReport.cs │ │ │ │ │ │ ├── DownloadResponseComplianceDetailedPdfReport.json.cs │ │ │ │ │ │ ├── DownloadResponseCompliancePdfReport.PowerShell.cs │ │ │ │ │ │ ├── DownloadResponseCompliancePdfReport.TypeConverter.cs │ │ │ │ │ │ ├── DownloadResponseCompliancePdfReport.cs │ │ │ │ │ │ ├── DownloadResponseCompliancePdfReport.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── EvidenceFileDownloadRequest.PowerShell.cs │ │ │ │ │ │ ├── EvidenceFileDownloadRequest.TypeConverter.cs │ │ │ │ │ │ ├── EvidenceFileDownloadRequest.cs │ │ │ │ │ │ ├── EvidenceFileDownloadRequest.json.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponse.PowerShell.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponse.TypeConverter.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponse.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponse.json.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponseEvidenceFile.PowerShell.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponseEvidenceFile.TypeConverter.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponseEvidenceFile.cs │ │ │ │ │ │ ├── EvidenceFileDownloadResponseEvidenceFile.json.cs │ │ │ │ │ │ ├── EvidenceProperties.PowerShell.cs │ │ │ │ │ │ ├── EvidenceProperties.TypeConverter.cs │ │ │ │ │ │ ├── EvidenceProperties.cs │ │ │ │ │ │ ├── EvidenceProperties.json.cs │ │ │ │ │ │ ├── EvidenceResource.PowerShell.cs │ │ │ │ │ │ ├── EvidenceResource.TypeConverter.cs │ │ │ │ │ │ ├── EvidenceResource.cs │ │ │ │ │ │ ├── EvidenceResource.json.cs │ │ │ │ │ │ ├── EvidenceResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── EvidenceResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── EvidenceResourceListResult.cs │ │ │ │ │ │ ├── EvidenceResourceListResult.json.cs │ │ │ │ │ │ ├── GetCollectionCountRequest.PowerShell.cs │ │ │ │ │ │ ├── GetCollectionCountRequest.TypeConverter.cs │ │ │ │ │ │ ├── GetCollectionCountRequest.cs │ │ │ │ │ │ ├── GetCollectionCountRequest.json.cs │ │ │ │ │ │ ├── GetCollectionCountResponse.PowerShell.cs │ │ │ │ │ │ ├── GetCollectionCountResponse.TypeConverter.cs │ │ │ │ │ │ ├── GetCollectionCountResponse.cs │ │ │ │ │ │ ├── GetCollectionCountResponse.json.cs │ │ │ │ │ │ ├── GetOverviewStatusRequest.PowerShell.cs │ │ │ │ │ │ ├── GetOverviewStatusRequest.TypeConverter.cs │ │ │ │ │ │ ├── GetOverviewStatusRequest.cs │ │ │ │ │ │ ├── GetOverviewStatusRequest.json.cs │ │ │ │ │ │ ├── GetOverviewStatusResponse.PowerShell.cs │ │ │ │ │ │ ├── GetOverviewStatusResponse.TypeConverter.cs │ │ │ │ │ │ ├── GetOverviewStatusResponse.cs │ │ │ │ │ │ ├── GetOverviewStatusResponse.json.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsRequest.PowerShell.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsRequest.TypeConverter.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsRequest.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsRequest.json.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsResponse.PowerShell.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsResponse.TypeConverter.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsResponse.cs │ │ │ │ │ │ ├── ListInUseStorageAccountsResponse.json.cs │ │ │ │ │ │ ├── OnboardRequest.PowerShell.cs │ │ │ │ │ │ ├── OnboardRequest.TypeConverter.cs │ │ │ │ │ │ ├── OnboardRequest.cs │ │ │ │ │ │ ├── OnboardRequest.json.cs │ │ │ │ │ │ ├── OnboardResponse.PowerShell.cs │ │ │ │ │ │ ├── OnboardResponse.TypeConverter.cs │ │ │ │ │ │ ├── OnboardResponse.cs │ │ │ │ │ │ ├── OnboardResponse.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OverviewStatus.PowerShell.cs │ │ │ │ │ │ ├── OverviewStatus.TypeConverter.cs │ │ │ │ │ │ ├── OverviewStatus.cs │ │ │ │ │ │ ├── OverviewStatus.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── QuickAssessment.PowerShell.cs │ │ │ │ │ │ ├── QuickAssessment.TypeConverter.cs │ │ │ │ │ │ ├── QuickAssessment.cs │ │ │ │ │ │ ├── QuickAssessment.json.cs │ │ │ │ │ │ ├── Recommendation.PowerShell.cs │ │ │ │ │ │ ├── Recommendation.TypeConverter.cs │ │ │ │ │ │ ├── Recommendation.cs │ │ │ │ │ │ ├── Recommendation.json.cs │ │ │ │ │ │ ├── RecommendationSolution.PowerShell.cs │ │ │ │ │ │ ├── RecommendationSolution.TypeConverter.cs │ │ │ │ │ │ ├── RecommendationSolution.cs │ │ │ │ │ │ ├── RecommendationSolution.json.cs │ │ │ │ │ │ ├── ReportComplianceStatus.PowerShell.cs │ │ │ │ │ │ ├── ReportComplianceStatus.TypeConverter.cs │ │ │ │ │ │ ├── ReportComplianceStatus.cs │ │ │ │ │ │ ├── ReportComplianceStatus.json.cs │ │ │ │ │ │ ├── ReportFixResult.PowerShell.cs │ │ │ │ │ │ ├── ReportFixResult.TypeConverter.cs │ │ │ │ │ │ ├── ReportFixResult.cs │ │ │ │ │ │ ├── ReportFixResult.json.cs │ │ │ │ │ │ ├── ReportPatchProperties.PowerShell.cs │ │ │ │ │ │ ├── ReportPatchProperties.TypeConverter.cs │ │ │ │ │ │ ├── ReportPatchProperties.cs │ │ │ │ │ │ ├── ReportPatchProperties.json.cs │ │ │ │ │ │ ├── ReportProperties.PowerShell.cs │ │ │ │ │ │ ├── ReportProperties.TypeConverter.cs │ │ │ │ │ │ ├── ReportProperties.cs │ │ │ │ │ │ ├── ReportProperties.json.cs │ │ │ │ │ │ ├── ReportResource.PowerShell.cs │ │ │ │ │ │ ├── ReportResource.TypeConverter.cs │ │ │ │ │ │ ├── ReportResource.cs │ │ │ │ │ │ ├── ReportResource.json.cs │ │ │ │ │ │ ├── ReportResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── ReportResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── ReportResourceListResult.cs │ │ │ │ │ │ ├── ReportResourceListResult.json.cs │ │ │ │ │ │ ├── ReportResourcePatch.PowerShell.cs │ │ │ │ │ │ ├── ReportResourcePatch.TypeConverter.cs │ │ │ │ │ │ ├── ReportResourcePatch.cs │ │ │ │ │ │ ├── ReportResourcePatch.json.cs │ │ │ │ │ │ ├── ReportVerificationResult.PowerShell.cs │ │ │ │ │ │ ├── ReportVerificationResult.TypeConverter.cs │ │ │ │ │ │ ├── ReportVerificationResult.cs │ │ │ │ │ │ ├── ReportVerificationResult.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceItem.PowerShell.cs │ │ │ │ │ │ ├── ResourceItem.TypeConverter.cs │ │ │ │ │ │ ├── ResourceItem.cs │ │ │ │ │ │ ├── ResourceItem.json.cs │ │ │ │ │ │ ├── ResourceMetadata.PowerShell.cs │ │ │ │ │ │ ├── ResourceMetadata.TypeConverter.cs │ │ │ │ │ │ ├── ResourceMetadata.cs │ │ │ │ │ │ ├── ResourceMetadata.json.cs │ │ │ │ │ │ ├── Responsibility.PowerShell.cs │ │ │ │ │ │ ├── Responsibility.TypeConverter.cs │ │ │ │ │ │ ├── Responsibility.cs │ │ │ │ │ │ ├── Responsibility.json.cs │ │ │ │ │ │ ├── ResponsibilityResource.PowerShell.cs │ │ │ │ │ │ ├── ResponsibilityResource.TypeConverter.cs │ │ │ │ │ │ ├── ResponsibilityResource.cs │ │ │ │ │ │ ├── ResponsibilityResource.json.cs │ │ │ │ │ │ ├── ScopingAnswer.PowerShell.cs │ │ │ │ │ │ ├── ScopingAnswer.TypeConverter.cs │ │ │ │ │ │ ├── ScopingAnswer.cs │ │ │ │ │ │ ├── ScopingAnswer.json.cs │ │ │ │ │ │ ├── ScopingConfigurationProperties.PowerShell.cs │ │ │ │ │ │ ├── ScopingConfigurationProperties.TypeConverter.cs │ │ │ │ │ │ ├── ScopingConfigurationProperties.cs │ │ │ │ │ │ ├── ScopingConfigurationProperties.json.cs │ │ │ │ │ │ ├── ScopingConfigurationResource.PowerShell.cs │ │ │ │ │ │ ├── ScopingConfigurationResource.TypeConverter.cs │ │ │ │ │ │ ├── ScopingConfigurationResource.cs │ │ │ │ │ │ ├── ScopingConfigurationResource.json.cs │ │ │ │ │ │ ├── ScopingConfigurationResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── ScopingConfigurationResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── ScopingConfigurationResourceListResult.cs │ │ │ │ │ │ ├── ScopingConfigurationResourceListResult.json.cs │ │ │ │ │ │ ├── ScopingQuestion.PowerShell.cs │ │ │ │ │ │ ├── ScopingQuestion.TypeConverter.cs │ │ │ │ │ │ ├── ScopingQuestion.cs │ │ │ │ │ │ ├── ScopingQuestion.json.cs │ │ │ │ │ │ ├── ScopingQuestions.PowerShell.cs │ │ │ │ │ │ ├── ScopingQuestions.TypeConverter.cs │ │ │ │ │ │ ├── ScopingQuestions.cs │ │ │ │ │ │ ├── ScopingQuestions.json.cs │ │ │ │ │ │ ├── SnapshotDownloadRequest.PowerShell.cs │ │ │ │ │ │ ├── SnapshotDownloadRequest.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotDownloadRequest.cs │ │ │ │ │ │ ├── SnapshotDownloadRequest.json.cs │ │ │ │ │ │ ├── SnapshotProperties.PowerShell.cs │ │ │ │ │ │ ├── SnapshotProperties.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotProperties.cs │ │ │ │ │ │ ├── SnapshotProperties.json.cs │ │ │ │ │ │ ├── SnapshotResource.PowerShell.cs │ │ │ │ │ │ ├── SnapshotResource.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotResource.cs │ │ │ │ │ │ ├── SnapshotResource.json.cs │ │ │ │ │ │ ├── SnapshotResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── SnapshotResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotResourceListResult.cs │ │ │ │ │ │ ├── SnapshotResourceListResult.json.cs │ │ │ │ │ │ ├── StatusItem.PowerShell.cs │ │ │ │ │ │ ├── StatusItem.TypeConverter.cs │ │ │ │ │ │ ├── StatusItem.cs │ │ │ │ │ │ ├── StatusItem.json.cs │ │ │ │ │ │ ├── StorageInfo.PowerShell.cs │ │ │ │ │ │ ├── StorageInfo.TypeConverter.cs │ │ │ │ │ │ ├── StorageInfo.cs │ │ │ │ │ │ ├── StorageInfo.json.cs │ │ │ │ │ │ ├── SyncCertRecordRequest.PowerShell.cs │ │ │ │ │ │ ├── SyncCertRecordRequest.TypeConverter.cs │ │ │ │ │ │ ├── SyncCertRecordRequest.cs │ │ │ │ │ │ ├── SyncCertRecordRequest.json.cs │ │ │ │ │ │ ├── SyncCertRecordResponse.PowerShell.cs │ │ │ │ │ │ ├── SyncCertRecordResponse.TypeConverter.cs │ │ │ │ │ │ ├── SyncCertRecordResponse.cs │ │ │ │ │ │ ├── SyncCertRecordResponse.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TriggerEvaluationProperty.PowerShell.cs │ │ │ │ │ │ ├── TriggerEvaluationProperty.TypeConverter.cs │ │ │ │ │ │ ├── TriggerEvaluationProperty.cs │ │ │ │ │ │ ├── TriggerEvaluationProperty.json.cs │ │ │ │ │ │ ├── TriggerEvaluationRequest.PowerShell.cs │ │ │ │ │ │ ├── TriggerEvaluationRequest.TypeConverter.cs │ │ │ │ │ │ ├── TriggerEvaluationRequest.cs │ │ │ │ │ │ ├── TriggerEvaluationRequest.json.cs │ │ │ │ │ │ ├── TriggerEvaluationResponse.PowerShell.cs │ │ │ │ │ │ ├── TriggerEvaluationResponse.TypeConverter.cs │ │ │ │ │ │ ├── TriggerEvaluationResponse.cs │ │ │ │ │ │ ├── TriggerEvaluationResponse.json.cs │ │ │ │ │ │ ├── WebhookProperties.PowerShell.cs │ │ │ │ │ │ ├── WebhookProperties.TypeConverter.cs │ │ │ │ │ │ ├── WebhookProperties.cs │ │ │ │ │ │ ├── WebhookProperties.json.cs │ │ │ │ │ │ ├── WebhookResource.PowerShell.cs │ │ │ │ │ │ ├── WebhookResource.TypeConverter.cs │ │ │ │ │ │ ├── WebhookResource.cs │ │ │ │ │ │ ├── WebhookResource.json.cs │ │ │ │ │ │ ├── WebhookResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── WebhookResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── WebhookResourceListResult.cs │ │ │ │ │ │ ├── WebhookResourceListResult.json.cs │ │ │ │ │ │ ├── WebhookResourcePatch.PowerShell.cs │ │ │ │ │ │ ├── WebhookResourcePatch.TypeConverter.cs │ │ │ │ │ │ ├── WebhookResourcePatch.cs │ │ │ │ │ │ └── WebhookResourcePatch.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzAppComplianceAutomationEvidence_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationEvidence_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationEvidence_GetViaIdentityReport.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationEvidence_List.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationOperation_List.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionCollectionCount_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionCollectionCount_GetExpanded.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionCollectionCount_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionCollectionCount_GetViaJsonString.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionOverviewStatus_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionOverviewStatus_GetExpanded.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionOverviewStatus_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderActionOverviewStatus_GetViaJsonString.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderAction_List.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderAction_ListExpanded.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderAction_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationProviderAction_ListViaJsonString.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationReportScopingQuestion_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationReportScopingQuestion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationReport_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationReport_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationReport_List.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationScopingConfiguration_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationScopingConfiguration_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationScopingConfiguration_GetViaIdentityReport.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationScopingConfiguration_List.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationSnapshot_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationSnapshot_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationSnapshot_GetViaIdentityReport.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationSnapshot_List.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationWebhook_Get.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationWebhook_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationWebhook_GetViaIdentityReport.cs │ │ │ │ │ ├── GetAzAppComplianceAutomationWebhook_List.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_Download.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadViaIdentity.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadViaIdentityReport.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadViaIdentityReportExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadEvidence_DownloadViaJsonString.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_Download.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadViaIdentity.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadViaIdentityReport.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadViaIdentityReportExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationDownloadSnapshot_DownloadViaJsonString.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationFixReport_Fix.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationFixReport_FixViaIdentity.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationOnboardProviderAction_Onboard.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationOnboardProviderAction_OnboardExpanded.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationOnboardProviderAction_OnboardViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzAppComplianceAutomationOnboardProviderAction_OnboardViaJsonString.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationEvidence_CreateExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationEvidence_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationEvidence_CreateViaIdentityReportExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationEvidence_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationEvidence_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationReport_CreateExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationReport_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationReport_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationReport_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationScopingConfiguration_CreateExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationScopingConfiguration_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationScopingConfiguration_CreateViaIdentityReportExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationScopingConfiguration_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationScopingConfiguration_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationWebhook_CreateExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationWebhook_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationWebhook_CreateViaIdentityReportExpanded.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationWebhook_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAppComplianceAutomationWebhook_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationEvidence_Delete.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationEvidence_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationEvidence_DeleteViaIdentityReport.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationReport_Delete.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationReport_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationScopingConfiguration_Delete.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationScopingConfiguration_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationScopingConfiguration_DeleteViaIdentityReport.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationWebhook_Delete.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationWebhook_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzAppComplianceAutomationWebhook_DeleteViaIdentityReport.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationEvidence_UpdateExpanded.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationEvidence_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationEvidence_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationReport_UpdateExpanded.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationReport_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationReport_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationScopingConfiguration_UpdateExpanded.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationScopingConfiguration_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationScopingConfiguration_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationWebhook_UpdateExpanded.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationWebhook_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzAppComplianceAutomationWebhook_UpdateViaJsonString.cs │ │ │ │ │ ├── StartAzAppComplianceAutomationProviderActionEvaluation_Trigger.cs │ │ │ │ │ ├── StartAzAppComplianceAutomationProviderActionEvaluation_TriggerExpanded.cs │ │ │ │ │ ├── StartAzAppComplianceAutomationProviderActionEvaluation_TriggerViaJsonFilePath.cs │ │ │ │ │ ├── StartAzAppComplianceAutomationProviderActionEvaluation_TriggerViaJsonString.cs │ │ │ │ │ ├── SyncAzAppComplianceAutomationReportCertRecord_Sync.cs │ │ │ │ │ ├── SyncAzAppComplianceAutomationReportCertRecord_SyncExpanded.cs │ │ │ │ │ ├── SyncAzAppComplianceAutomationReportCertRecord_SyncViaIdentity.cs │ │ │ │ │ ├── SyncAzAppComplianceAutomationReportCertRecord_SyncViaIdentityExpanded.cs │ │ │ │ │ ├── SyncAzAppComplianceAutomationReportCertRecord_SyncViaJsonFilePath.cs │ │ │ │ │ ├── SyncAzAppComplianceAutomationReportCertRecord_SyncViaJsonString.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationProviderActionNameAvailability_Check.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationProviderActionNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationProviderActionNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationProviderActionNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_Check.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_CheckExpanded.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_CheckViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_CheckViaJsonString.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_Verify.cs │ │ │ │ │ ├── TestAzAppComplianceAutomationReport_VerifyViaIdentity.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationEvidence_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationEvidence_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationEvidence_UpdateViaIdentityReportExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationReport_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationReport_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationReport_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationReport_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationScopingConfiguration_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationScopingConfiguration_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationScopingConfiguration_UpdateViaIdentityReportExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationWebhook_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationWebhook_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationWebhook_UpdateViaIdentityReportExpanded.cs │ │ │ │ │ ├── UpdateAzAppComplianceAutomationWebhook_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzAppComplianceAutomationWebhook_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.AppComplianceAutomation.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Astronomer.Astro.Management │ │ ├── LiftrBase.Data │ │ │ └── main.tsp │ │ ├── LiftrBase │ │ │ └── main.tsp │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2023-08-01-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ │ ├── 2023-08-01 │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ │ ├── 2024-08-27-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MinimumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ │ └── 2024-08-27 │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MinimumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Astro.csproj │ │ │ ├── Az.Astro.nuspec │ │ │ ├── Az.Astro.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Astro.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── AstronomerAstro.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AstroIdentity.PowerShell.cs │ │ │ │ │ │ ├── AstroIdentity.TypeConverter.cs │ │ │ │ │ │ ├── AstroIdentity.cs │ │ │ │ │ │ ├── AstroIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── OfferDetails.PowerShell.cs │ │ │ │ │ │ ├── OfferDetails.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetails.cs │ │ │ │ │ │ ├── OfferDetails.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── OrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationProperties.cs │ │ │ │ │ │ ├── OrganizationProperties.json.cs │ │ │ │ │ │ ├── OrganizationResource.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResource.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResource.cs │ │ │ │ │ │ ├── OrganizationResource.json.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateProperties.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateProperties.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.json.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SingleSignOnProperties.PowerShell.cs │ │ │ │ │ │ ├── SingleSignOnProperties.TypeConverter.cs │ │ │ │ │ │ ├── SingleSignOnProperties.cs │ │ │ │ │ │ ├── SingleSignOnProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ └── UserDetails.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzAstroOperation_List.cs │ │ │ │ │ ├── GetAzAstroOrganization_Get.cs │ │ │ │ │ ├── GetAzAstroOrganization_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAstroOrganization_List.cs │ │ │ │ │ ├── GetAzAstroOrganization_List1.cs │ │ │ │ │ ├── NewAzAstroOrganization_CreateExpanded.cs │ │ │ │ │ ├── NewAzAstroOrganization_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAstroOrganization_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAstroOrganization_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzAstroOrganization_Delete.cs │ │ │ │ │ ├── RemoveAzAstroOrganization_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzAstroOrganization_UpdateExpanded.cs │ │ │ │ │ ├── SetAzAstroOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzAstroOrganization_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzAstroOrganization_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzAstroOrganization_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Astro.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── AzureAI.Assets │ │ ├── client.tsp │ │ ├── common.tsp │ │ ├── main.tsp │ │ ├── model.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.MachineLearningServices.csproj │ │ │ ├── Az.MachineLearningServices.nuspec │ │ │ ├── Az.MachineLearningServices.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.MachineLearningServices.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MachineLearningServices.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AzureCoreFoundationsErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── AzureCoreFoundationsErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── AzureCoreFoundationsErrorResponse.cs │ │ │ │ │ │ ├── AzureCoreFoundationsErrorResponse.json.cs │ │ │ │ │ │ ├── Error.PowerShell.cs │ │ │ │ │ │ ├── Error.TypeConverter.cs │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.json.cs │ │ │ │ │ │ ├── IErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── IErrorResponse.cs │ │ │ │ │ │ ├── IErrorResponseInternal.cs │ │ │ │ │ │ ├── Index.PowerShell.cs │ │ │ │ │ │ ├── Index.TypeConverter.cs │ │ │ │ │ │ ├── Index.cs │ │ │ │ │ │ ├── Index.json.cs │ │ │ │ │ │ ├── IndexProperties.PowerShell.cs │ │ │ │ │ │ ├── IndexProperties.TypeConverter.cs │ │ │ │ │ │ ├── IndexProperties.cs │ │ │ │ │ │ ├── IndexProperties.dictionary.cs │ │ │ │ │ │ ├── IndexProperties.json.cs │ │ │ │ │ │ ├── IndexTags.PowerShell.cs │ │ │ │ │ │ ├── IndexTags.TypeConverter.cs │ │ │ │ │ │ ├── IndexTags.cs │ │ │ │ │ │ ├── IndexTags.dictionary.cs │ │ │ │ │ │ ├── IndexTags.json.cs │ │ │ │ │ │ ├── InnerError.PowerShell.cs │ │ │ │ │ │ ├── InnerError.TypeConverter.cs │ │ │ │ │ │ ├── InnerError.cs │ │ │ │ │ │ ├── InnerError.json.cs │ │ │ │ │ │ ├── MachineLearningServicesIdentity.PowerShell.cs │ │ │ │ │ │ ├── MachineLearningServicesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── MachineLearningServicesIdentity.cs │ │ │ │ │ │ ├── MachineLearningServicesIdentity.json.cs │ │ │ │ │ │ ├── PagedIndex.PowerShell.cs │ │ │ │ │ │ ├── PagedIndex.TypeConverter.cs │ │ │ │ │ │ ├── PagedIndex.cs │ │ │ │ │ │ ├── PagedIndex.json.cs │ │ │ │ │ │ ├── PagedPrompt.PowerShell.cs │ │ │ │ │ │ ├── PagedPrompt.TypeConverter.cs │ │ │ │ │ │ ├── PagedPrompt.cs │ │ │ │ │ │ ├── PagedPrompt.json.cs │ │ │ │ │ │ ├── Prompt.PowerShell.cs │ │ │ │ │ │ ├── Prompt.TypeConverter.cs │ │ │ │ │ │ ├── Prompt.cs │ │ │ │ │ │ ├── Prompt.json.cs │ │ │ │ │ │ ├── PromptProperties.PowerShell.cs │ │ │ │ │ │ ├── PromptProperties.TypeConverter.cs │ │ │ │ │ │ ├── PromptProperties.cs │ │ │ │ │ │ ├── PromptProperties.dictionary.cs │ │ │ │ │ │ ├── PromptProperties.json.cs │ │ │ │ │ │ ├── PromptTags.PowerShell.cs │ │ │ │ │ │ ├── PromptTags.TypeConverter.cs │ │ │ │ │ │ ├── PromptTags.cs │ │ │ │ │ │ ├── PromptTags.dictionary.cs │ │ │ │ │ │ ├── PromptTags.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── VersionInfo.PowerShell.cs │ │ │ │ │ │ ├── VersionInfo.TypeConverter.cs │ │ │ │ │ │ ├── VersionInfo.cs │ │ │ │ │ │ └── VersionInfo.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzMlWorkspaceIndexLatest_Get.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndexLatest_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndexLatest_List.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndexNextVersion_Get.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndexNextVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndex_Get.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndex_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndex_GetViaIdentityIndex.cs │ │ │ │ │ ├── GetAzMlWorkspaceIndex_List.cs │ │ │ │ │ ├── GetAzMlWorkspacePromptLatest_Get.cs │ │ │ │ │ ├── GetAzMlWorkspacePromptLatest_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMlWorkspacePromptLatest_List.cs │ │ │ │ │ ├── GetAzMlWorkspacePromptNextVersion_Get.cs │ │ │ │ │ ├── GetAzMlWorkspacePromptNextVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMlWorkspacePrompt_Get.cs │ │ │ │ │ ├── GetAzMlWorkspacePrompt_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMlWorkspacePrompt_GetViaIdentityPrompt.cs │ │ │ │ │ ├── GetAzMlWorkspacePrompt_List.cs │ │ │ │ │ ├── NewAzMlWorkspaceIndex_CreateExpanded.cs │ │ │ │ │ ├── NewAzMlWorkspaceIndex_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzMlWorkspaceIndex_CreateViaIdentityIndexExpanded.cs │ │ │ │ │ ├── NewAzMlWorkspaceIndex_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzMlWorkspaceIndex_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzMlWorkspacePrompt_CreateExpanded.cs │ │ │ │ │ ├── NewAzMlWorkspacePrompt_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzMlWorkspacePrompt_CreateViaIdentityPromptExpanded.cs │ │ │ │ │ ├── NewAzMlWorkspacePrompt_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzMlWorkspacePrompt_CreateViaJsonString.cs │ │ │ │ │ ├── SetAzMlWorkspaceIndex_UpdateExpanded.cs │ │ │ │ │ ├── SetAzMlWorkspaceIndex_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzMlWorkspaceIndex_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzMlWorkspacePrompt_UpdateExpanded.cs │ │ │ │ │ ├── SetAzMlWorkspacePrompt_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzMlWorkspacePrompt_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzMlWorkspaceIndex_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzMlWorkspaceIndex_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzMlWorkspaceIndex_UpdateViaIdentityIndexExpanded.cs │ │ │ │ │ ├── UpdateAzMlWorkspacePrompt_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzMlWorkspacePrompt_UpdateViaIdentityExpanded.cs │ │ │ │ │ └── UpdateAzMlWorkspacePrompt_UpdateViaIdentityPromptExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.MachineLearningServices.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── AzureFleet.Management │ │ ├── baseVirtualMachineProfile.tsp │ │ ├── client.tsp │ │ ├── common.tsp │ │ ├── examples │ │ │ ├── 2023-11-01-preview │ │ │ │ ├── Fleets_CreateOrUpdate_MaximumSet.json │ │ │ │ ├── Fleets_CreateOrUpdate_MinimumSet.json │ │ │ │ ├── Fleets_Delete_MaximumSet.json │ │ │ │ ├── Fleets_Delete_MinimumSet.json │ │ │ │ ├── Fleets_Get_MaximumSet.json │ │ │ │ ├── Fleets_Get_MinimumSet.json │ │ │ │ ├── Fleets_ListByResourceGroup_MaximumSet.json │ │ │ │ ├── Fleets_ListByResourceGroup_MinimumSet.json │ │ │ │ ├── Fleets_ListBySubscription_MaximumSet.json │ │ │ │ ├── Fleets_ListBySubscription_MinimumSet.json │ │ │ │ ├── Fleets_ListVirtualMachineScaleSets_MaximumSet.json │ │ │ │ ├── Fleets_Update_MaximumSet.json │ │ │ │ ├── Fleets_Update_MinimumSet.json │ │ │ │ ├── Operations_List_MaximumSet.json │ │ │ │ └── Operations_List_MinimumSet.json │ │ │ ├── 2024-05-01-preview │ │ │ │ ├── Fleets_CreateOrUpdate.json │ │ │ │ ├── Fleets_CreateOrUpdate_MinimumSet.json │ │ │ │ ├── Fleets_Delete.json │ │ │ │ ├── Fleets_Get.json │ │ │ │ ├── Fleets_ListByResourceGroup.json │ │ │ │ ├── Fleets_ListBySubscription.json │ │ │ │ ├── Fleets_ListVirtualMachineScaleSets.json │ │ │ │ ├── Fleets_Update.json │ │ │ │ └── Operations_List.json │ │ │ └── 2024-11-01 │ │ │ │ ├── Fleets_CreateOrUpdate.json │ │ │ │ ├── Fleets_CreateOrUpdate_MinimumSet.json │ │ │ │ ├── Fleets_Delete.json │ │ │ │ ├── Fleets_Get.json │ │ │ │ ├── Fleets_ListByResourceGroup.json │ │ │ │ ├── Fleets_ListBySubscription.json │ │ │ │ ├── Fleets_ListVirtualMachineScaleSets.json │ │ │ │ ├── Fleets_Update.json │ │ │ │ └── Operations_List.json │ │ ├── fleet.tsp │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.ComputeFleet.csproj │ │ │ ├── Az.ComputeFleet.nuspec │ │ │ ├── Az.ComputeFleet.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.ComputeFleet.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftAzureFleet.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AdditionalCapabilities.PowerShell.cs │ │ │ │ │ │ ├── AdditionalCapabilities.TypeConverter.cs │ │ │ │ │ │ ├── AdditionalCapabilities.cs │ │ │ │ │ │ ├── AdditionalCapabilities.json.cs │ │ │ │ │ │ ├── AdditionalLocationsProfile.PowerShell.cs │ │ │ │ │ │ ├── AdditionalLocationsProfile.TypeConverter.cs │ │ │ │ │ │ ├── AdditionalLocationsProfile.cs │ │ │ │ │ │ ├── AdditionalLocationsProfile.json.cs │ │ │ │ │ │ ├── AdditionalUnattendContent.PowerShell.cs │ │ │ │ │ │ ├── AdditionalUnattendContent.TypeConverter.cs │ │ │ │ │ │ ├── AdditionalUnattendContent.cs │ │ │ │ │ │ ├── AdditionalUnattendContent.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApiEntityReference.PowerShell.cs │ │ │ │ │ │ ├── ApiEntityReference.TypeConverter.cs │ │ │ │ │ │ ├── ApiEntityReference.cs │ │ │ │ │ │ ├── ApiEntityReference.json.cs │ │ │ │ │ │ ├── ApiError.PowerShell.cs │ │ │ │ │ │ ├── ApiError.TypeConverter.cs │ │ │ │ │ │ ├── ApiError.cs │ │ │ │ │ │ ├── ApiError.json.cs │ │ │ │ │ │ ├── ApiErrorBase.PowerShell.cs │ │ │ │ │ │ ├── ApiErrorBase.TypeConverter.cs │ │ │ │ │ │ ├── ApiErrorBase.cs │ │ │ │ │ │ ├── ApiErrorBase.json.cs │ │ │ │ │ │ ├── ApplicationProfile.PowerShell.cs │ │ │ │ │ │ ├── ApplicationProfile.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationProfile.cs │ │ │ │ │ │ ├── ApplicationProfile.json.cs │ │ │ │ │ │ ├── BaseVirtualMachineProfile.PowerShell.cs │ │ │ │ │ │ ├── BaseVirtualMachineProfile.TypeConverter.cs │ │ │ │ │ │ ├── BaseVirtualMachineProfile.cs │ │ │ │ │ │ ├── BaseVirtualMachineProfile.json.cs │ │ │ │ │ │ ├── BootDiagnostics.PowerShell.cs │ │ │ │ │ │ ├── BootDiagnostics.TypeConverter.cs │ │ │ │ │ │ ├── BootDiagnostics.cs │ │ │ │ │ │ ├── BootDiagnostics.json.cs │ │ │ │ │ │ ├── CapacityReservationProfile.PowerShell.cs │ │ │ │ │ │ ├── CapacityReservationProfile.TypeConverter.cs │ │ │ │ │ │ ├── CapacityReservationProfile.cs │ │ │ │ │ │ ├── CapacityReservationProfile.json.cs │ │ │ │ │ │ ├── ComputeFleetIdentity.PowerShell.cs │ │ │ │ │ │ ├── ComputeFleetIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ComputeFleetIdentity.cs │ │ │ │ │ │ ├── ComputeFleetIdentity.json.cs │ │ │ │ │ │ ├── ComputeProfile.PowerShell.cs │ │ │ │ │ │ ├── ComputeProfile.TypeConverter.cs │ │ │ │ │ │ ├── ComputeProfile.cs │ │ │ │ │ │ ├── ComputeProfile.json.cs │ │ │ │ │ │ ├── DiagnosticsProfile.PowerShell.cs │ │ │ │ │ │ ├── DiagnosticsProfile.TypeConverter.cs │ │ │ │ │ │ ├── DiagnosticsProfile.cs │ │ │ │ │ │ ├── DiagnosticsProfile.json.cs │ │ │ │ │ │ ├── DiffDiskSettings.PowerShell.cs │ │ │ │ │ │ ├── DiffDiskSettings.TypeConverter.cs │ │ │ │ │ │ ├── DiffDiskSettings.cs │ │ │ │ │ │ ├── DiffDiskSettings.json.cs │ │ │ │ │ │ ├── DiskEncryptionSetParameters.PowerShell.cs │ │ │ │ │ │ ├── DiskEncryptionSetParameters.TypeConverter.cs │ │ │ │ │ │ ├── DiskEncryptionSetParameters.cs │ │ │ │ │ │ ├── DiskEncryptionSetParameters.json.cs │ │ │ │ │ │ ├── EncryptionIdentity.PowerShell.cs │ │ │ │ │ │ ├── EncryptionIdentity.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionIdentity.cs │ │ │ │ │ │ ├── EncryptionIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Fleet.PowerShell.cs │ │ │ │ │ │ ├── Fleet.TypeConverter.cs │ │ │ │ │ │ ├── Fleet.cs │ │ │ │ │ │ ├── Fleet.json.cs │ │ │ │ │ │ ├── FleetListResult.PowerShell.cs │ │ │ │ │ │ ├── FleetListResult.TypeConverter.cs │ │ │ │ │ │ ├── FleetListResult.cs │ │ │ │ │ │ ├── FleetListResult.json.cs │ │ │ │ │ │ ├── FleetProperties.PowerShell.cs │ │ │ │ │ │ ├── FleetProperties.TypeConverter.cs │ │ │ │ │ │ ├── FleetProperties.cs │ │ │ │ │ │ ├── FleetProperties.json.cs │ │ │ │ │ │ ├── FleetUpdate.PowerShell.cs │ │ │ │ │ │ ├── FleetUpdate.TypeConverter.cs │ │ │ │ │ │ ├── FleetUpdate.cs │ │ │ │ │ │ ├── FleetUpdate.json.cs │ │ │ │ │ │ ├── FleetUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── FleetUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── FleetUpdateTags.cs │ │ │ │ │ │ ├── FleetUpdateTags.dictionary.cs │ │ │ │ │ │ ├── FleetUpdateTags.json.cs │ │ │ │ │ │ ├── ImageReference.PowerShell.cs │ │ │ │ │ │ ├── ImageReference.TypeConverter.cs │ │ │ │ │ │ ├── ImageReference.cs │ │ │ │ │ │ ├── ImageReference.json.cs │ │ │ │ │ │ ├── InnerError.PowerShell.cs │ │ │ │ │ │ ├── InnerError.TypeConverter.cs │ │ │ │ │ │ ├── InnerError.cs │ │ │ │ │ │ ├── InnerError.json.cs │ │ │ │ │ │ ├── KeyVaultSecretReference.PowerShell.cs │ │ │ │ │ │ ├── KeyVaultSecretReference.TypeConverter.cs │ │ │ │ │ │ ├── KeyVaultSecretReference.cs │ │ │ │ │ │ ├── KeyVaultSecretReference.json.cs │ │ │ │ │ │ ├── LinuxConfiguration.PowerShell.cs │ │ │ │ │ │ ├── LinuxConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── LinuxConfiguration.cs │ │ │ │ │ │ ├── LinuxConfiguration.json.cs │ │ │ │ │ │ ├── LinuxPatchSettings.PowerShell.cs │ │ │ │ │ │ ├── LinuxPatchSettings.TypeConverter.cs │ │ │ │ │ │ ├── LinuxPatchSettings.cs │ │ │ │ │ │ ├── LinuxPatchSettings.json.cs │ │ │ │ │ │ ├── LinuxVMGuestPatchAutomaticByPlatformSettings.PowerShell.cs │ │ │ │ │ │ ├── LinuxVMGuestPatchAutomaticByPlatformSettings.TypeConverter.cs │ │ │ │ │ │ ├── LinuxVMGuestPatchAutomaticByPlatformSettings.cs │ │ │ │ │ │ ├── LinuxVMGuestPatchAutomaticByPlatformSettings.json.cs │ │ │ │ │ │ ├── LocationProfile.PowerShell.cs │ │ │ │ │ │ ├── LocationProfile.TypeConverter.cs │ │ │ │ │ │ ├── LocationProfile.cs │ │ │ │ │ │ ├── LocationProfile.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── OSImageNotificationProfile.PowerShell.cs │ │ │ │ │ │ ├── OSImageNotificationProfile.TypeConverter.cs │ │ │ │ │ │ ├── OSImageNotificationProfile.cs │ │ │ │ │ │ ├── OSImageNotificationProfile.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PatchSettings.PowerShell.cs │ │ │ │ │ │ ├── PatchSettings.TypeConverter.cs │ │ │ │ │ │ ├── PatchSettings.cs │ │ │ │ │ │ ├── PatchSettings.json.cs │ │ │ │ │ │ ├── Plan.PowerShell.cs │ │ │ │ │ │ ├── Plan.TypeConverter.cs │ │ │ │ │ │ ├── Plan.cs │ │ │ │ │ │ ├── Plan.json.cs │ │ │ │ │ │ ├── ProxyAgentSettings.PowerShell.cs │ │ │ │ │ │ ├── ProxyAgentSettings.TypeConverter.cs │ │ │ │ │ │ ├── ProxyAgentSettings.cs │ │ │ │ │ │ ├── ProxyAgentSettings.json.cs │ │ │ │ │ │ ├── PublicIPAddressSku.PowerShell.cs │ │ │ │ │ │ ├── PublicIPAddressSku.TypeConverter.cs │ │ │ │ │ │ ├── PublicIPAddressSku.cs │ │ │ │ │ │ ├── PublicIPAddressSku.json.cs │ │ │ │ │ │ ├── RegularPriorityProfile.PowerShell.cs │ │ │ │ │ │ ├── RegularPriorityProfile.TypeConverter.cs │ │ │ │ │ │ ├── RegularPriorityProfile.cs │ │ │ │ │ │ ├── RegularPriorityProfile.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourcePlanUpdate.PowerShell.cs │ │ │ │ │ │ ├── ResourcePlanUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ResourcePlanUpdate.cs │ │ │ │ │ │ ├── ResourcePlanUpdate.json.cs │ │ │ │ │ │ ├── ScheduledEventsProfile.PowerShell.cs │ │ │ │ │ │ ├── ScheduledEventsProfile.TypeConverter.cs │ │ │ │ │ │ ├── ScheduledEventsProfile.cs │ │ │ │ │ │ ├── ScheduledEventsProfile.json.cs │ │ │ │ │ │ ├── SecurityPostureReference.PowerShell.cs │ │ │ │ │ │ ├── SecurityPostureReference.TypeConverter.cs │ │ │ │ │ │ ├── SecurityPostureReference.cs │ │ │ │ │ │ ├── SecurityPostureReference.json.cs │ │ │ │ │ │ ├── SecurityProfile.PowerShell.cs │ │ │ │ │ │ ├── SecurityProfile.TypeConverter.cs │ │ │ │ │ │ ├── SecurityProfile.cs │ │ │ │ │ │ ├── SecurityProfile.json.cs │ │ │ │ │ │ ├── ServiceArtifactReference.PowerShell.cs │ │ │ │ │ │ ├── ServiceArtifactReference.TypeConverter.cs │ │ │ │ │ │ ├── ServiceArtifactReference.cs │ │ │ │ │ │ ├── ServiceArtifactReference.json.cs │ │ │ │ │ │ ├── SpotPriorityProfile.PowerShell.cs │ │ │ │ │ │ ├── SpotPriorityProfile.TypeConverter.cs │ │ │ │ │ │ ├── SpotPriorityProfile.cs │ │ │ │ │ │ ├── SpotPriorityProfile.json.cs │ │ │ │ │ │ ├── SshConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SshConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SshConfiguration.cs │ │ │ │ │ │ ├── SshConfiguration.json.cs │ │ │ │ │ │ ├── SshPublicKey.PowerShell.cs │ │ │ │ │ │ ├── SshPublicKey.TypeConverter.cs │ │ │ │ │ │ ├── SshPublicKey.cs │ │ │ │ │ │ ├── SshPublicKey.json.cs │ │ │ │ │ │ ├── SubResource.PowerShell.cs │ │ │ │ │ │ ├── SubResource.TypeConverter.cs │ │ │ │ │ │ ├── SubResource.cs │ │ │ │ │ │ ├── SubResource.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TerminateNotificationProfile.PowerShell.cs │ │ │ │ │ │ ├── TerminateNotificationProfile.TypeConverter.cs │ │ │ │ │ │ ├── TerminateNotificationProfile.cs │ │ │ │ │ │ ├── TerminateNotificationProfile.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UefiSettings.PowerShell.cs │ │ │ │ │ │ ├── UefiSettings.TypeConverter.cs │ │ │ │ │ │ ├── UefiSettings.cs │ │ │ │ │ │ ├── UefiSettings.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VMAttributeMinMaxDouble.PowerShell.cs │ │ │ │ │ │ ├── VMAttributeMinMaxDouble.TypeConverter.cs │ │ │ │ │ │ ├── VMAttributeMinMaxDouble.cs │ │ │ │ │ │ ├── VMAttributeMinMaxDouble.json.cs │ │ │ │ │ │ ├── VMAttributeMinMaxInteger.PowerShell.cs │ │ │ │ │ │ ├── VMAttributeMinMaxInteger.TypeConverter.cs │ │ │ │ │ │ ├── VMAttributeMinMaxInteger.cs │ │ │ │ │ │ ├── VMAttributeMinMaxInteger.json.cs │ │ │ │ │ │ ├── VMAttributes.PowerShell.cs │ │ │ │ │ │ ├── VMAttributes.TypeConverter.cs │ │ │ │ │ │ ├── VMAttributes.cs │ │ │ │ │ │ ├── VMAttributes.json.cs │ │ │ │ │ │ ├── VMDiskSecurityProfile.PowerShell.cs │ │ │ │ │ │ ├── VMDiskSecurityProfile.TypeConverter.cs │ │ │ │ │ │ ├── VMDiskSecurityProfile.cs │ │ │ │ │ │ ├── VMDiskSecurityProfile.json.cs │ │ │ │ │ │ ├── VMGalleryApplication.PowerShell.cs │ │ │ │ │ │ ├── VMGalleryApplication.TypeConverter.cs │ │ │ │ │ │ ├── VMGalleryApplication.cs │ │ │ │ │ │ ├── VMGalleryApplication.json.cs │ │ │ │ │ │ ├── VMSizeProfile.PowerShell.cs │ │ │ │ │ │ ├── VMSizeProfile.TypeConverter.cs │ │ │ │ │ │ ├── VMSizeProfile.cs │ │ │ │ │ │ ├── VMSizeProfile.json.cs │ │ │ │ │ │ ├── VMSizeProperties.PowerShell.cs │ │ │ │ │ │ ├── VMSizeProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMSizeProperties.cs │ │ │ │ │ │ ├── VMSizeProperties.json.cs │ │ │ │ │ │ ├── VaultCertificate.PowerShell.cs │ │ │ │ │ │ ├── VaultCertificate.TypeConverter.cs │ │ │ │ │ │ ├── VaultCertificate.cs │ │ │ │ │ │ ├── VaultCertificate.json.cs │ │ │ │ │ │ ├── VaultSecretGroup.PowerShell.cs │ │ │ │ │ │ ├── VaultSecretGroup.TypeConverter.cs │ │ │ │ │ │ ├── VaultSecretGroup.cs │ │ │ │ │ │ ├── VaultSecretGroup.json.cs │ │ │ │ │ │ ├── VirtualHardDisk.PowerShell.cs │ │ │ │ │ │ ├── VirtualHardDisk.TypeConverter.cs │ │ │ │ │ │ ├── VirtualHardDisk.cs │ │ │ │ │ │ ├── VirtualHardDisk.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSet.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSet.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSet.cs │ │ │ │ │ │ ├── VirtualMachineScaleSet.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetDataDisk.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetDataDisk.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetDataDisk.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetDataDisk.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtension.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtension.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtension.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtension.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProfile.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProfile.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProfile.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProfile.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProperties.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProperties.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProperties.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionProperties.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesProtectedSettings.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesProtectedSettings.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesProtectedSettings.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesProtectedSettings.dictionary.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesProtectedSettings.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesSettings.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesSettings.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesSettings.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesSettings.dictionary.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetExtensionPropertiesSettings.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetHardwareProfile.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetHardwareProfile.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetHardwareProfile.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetHardwareProfile.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfiguration.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfiguration.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfiguration.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfigurationProperties.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfigurationProperties.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfigurationProperties.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPConfigurationProperties.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPTag.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPTag.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPTag.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetIPTag.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetListResult.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetListResult.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetListResult.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetListResult.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetManagedDiskParameters.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetManagedDiskParameters.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetManagedDiskParameters.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetManagedDiskParameters.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfiguration.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfiguration.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfiguration.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationDnsSettings.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationDnsSettings.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationDnsSettings.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationDnsSettings.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationProperties.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationProperties.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationProperties.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkConfigurationProperties.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkProfile.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkProfile.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkProfile.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetNetworkProfile.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSDisk.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSDisk.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSDisk.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSDisk.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSProfile.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSProfile.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSProfile.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetOSProfile.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfiguration.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfiguration.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfiguration.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationProperties.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationProperties.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationProperties.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetPublicIPAddressConfigurationProperties.json.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetStorageProfile.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetStorageProfile.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetStorageProfile.cs │ │ │ │ │ │ ├── VirtualMachineScaleSetStorageProfile.json.cs │ │ │ │ │ │ ├── WinRmConfiguration.PowerShell.cs │ │ │ │ │ │ ├── WinRmConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── WinRmConfiguration.cs │ │ │ │ │ │ ├── WinRmConfiguration.json.cs │ │ │ │ │ │ ├── WinRmListener.PowerShell.cs │ │ │ │ │ │ ├── WinRmListener.TypeConverter.cs │ │ │ │ │ │ ├── WinRmListener.cs │ │ │ │ │ │ ├── WinRmListener.json.cs │ │ │ │ │ │ ├── WindowsConfiguration.PowerShell.cs │ │ │ │ │ │ ├── WindowsConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── WindowsConfiguration.cs │ │ │ │ │ │ ├── WindowsConfiguration.json.cs │ │ │ │ │ │ ├── WindowsVMGuestPatchAutomaticByPlatformSettings.PowerShell.cs │ │ │ │ │ │ ├── WindowsVMGuestPatchAutomaticByPlatformSettings.TypeConverter.cs │ │ │ │ │ │ ├── WindowsVMGuestPatchAutomaticByPlatformSettings.cs │ │ │ │ │ │ └── WindowsVMGuestPatchAutomaticByPlatformSettings.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzComputeFleetOperation_List.cs │ │ │ │ │ ├── GetAzComputeFleetVirtualMachineScaleSet_List.cs │ │ │ │ │ ├── GetAzComputeFleet_Get.cs │ │ │ │ │ ├── GetAzComputeFleet_GetViaIdentity.cs │ │ │ │ │ ├── GetAzComputeFleet_List.cs │ │ │ │ │ ├── GetAzComputeFleet_List1.cs │ │ │ │ │ ├── NewAzComputeFleet_CreateExpanded.cs │ │ │ │ │ ├── NewAzComputeFleet_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzComputeFleet_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzComputeFleet_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzComputeFleet_Delete.cs │ │ │ │ │ ├── RemoveAzComputeFleet_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzComputeFleet_UpdateExpanded.cs │ │ │ │ │ ├── SetAzComputeFleet_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzComputeFleet_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzComputeFleet_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzComputeFleet_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.ComputeFleet.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ ├── tspconfig.yaml │ │ └── virtualMachineScaleSet.tsp │ ├── AzureLargeInstance.Management │ │ ├── AzureLargeInstance.tsp │ │ ├── AzureLargeStorageInstance.tsp │ │ ├── examples │ │ │ ├── 2023-07-20-preview │ │ │ │ ├── AzureLargeInstanceOperations_List.json │ │ │ │ ├── AzureLargeInstance_Get.json │ │ │ │ ├── AzureLargeInstance_ListByResourceGroup.json │ │ │ │ ├── AzureLargeInstance_ListBySubscription.json │ │ │ │ ├── AzureLargeInstance_PatchTags.json │ │ │ │ ├── AzureLargeInstance_PatchTags_Delete.json │ │ │ │ ├── AzureLargeInstance_Restart.json │ │ │ │ ├── AzureLargeInstance_Shutdown.json │ │ │ │ ├── AzureLargeInstance_Start.json │ │ │ │ ├── AzureLargeStorageInstance_Get.json │ │ │ │ ├── AzureLargeStorageInstance_ListByResourceGroup.json │ │ │ │ ├── AzureLargeStorageInstance_ListBySubscription.json │ │ │ │ ├── AzureLargeStorageInstance_PatchTags.json │ │ │ │ └── AzureLargeStorageInstance_PatchTags_Delete.json │ │ │ ├── 2024-04-10 │ │ │ │ ├── AzureLargeInstanceOperations_List.json │ │ │ │ ├── AzureLargeInstance_Get.json │ │ │ │ ├── AzureLargeInstance_ListByResourceGroup.json │ │ │ │ ├── AzureLargeInstance_ListBySubscription.json │ │ │ │ ├── AzureLargeInstance_PatchTags.json │ │ │ │ ├── AzureLargeInstance_PatchTags_Delete.json │ │ │ │ ├── AzureLargeInstance_Restart.json │ │ │ │ ├── AzureLargeInstance_Shutdown.json │ │ │ │ ├── AzureLargeInstance_Start.json │ │ │ │ ├── AzureLargeStorageInstance_Get.json │ │ │ │ ├── AzureLargeStorageInstance_ListByResourceGroup.json │ │ │ │ ├── AzureLargeStorageInstance_ListBySubscription.json │ │ │ │ ├── AzureLargeStorageInstance_PatchTags.json │ │ │ │ └── AzureLargeStorageInstance_PatchTags_Delete.json │ │ │ └── 2024-08-01-preview │ │ │ │ ├── AzureLargeInstanceOperations_List.json │ │ │ │ ├── AzureLargeInstance_Create.json │ │ │ │ ├── AzureLargeInstance_Delete.json │ │ │ │ ├── AzureLargeInstance_Get.json │ │ │ │ ├── AzureLargeInstance_ListByResourceGroup.json │ │ │ │ ├── AzureLargeInstance_ListBySubscription.json │ │ │ │ ├── AzureLargeInstance_PatchTags.json │ │ │ │ ├── AzureLargeInstance_PatchTags_Delete.json │ │ │ │ ├── AzureLargeInstance_Restart.json │ │ │ │ ├── AzureLargeInstance_Shutdown.json │ │ │ │ ├── AzureLargeInstance_Start.json │ │ │ │ ├── AzureLargeStorageInstance_Create.json │ │ │ │ ├── AzureLargeStorageInstance_Delete.json │ │ │ │ ├── AzureLargeStorageInstance_Get.json │ │ │ │ ├── AzureLargeStorageInstance_ListByResourceGroup.json │ │ │ │ ├── AzureLargeStorageInstance_ListBySubscription.json │ │ │ │ ├── AzureLargeStorageInstance_PatchTags.json │ │ │ │ └── AzureLargeStorageInstance_PatchTags_Delete.json │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.AzureLargeInstance.csproj │ │ │ ├── Az.AzureLargeInstance.nuspec │ │ │ ├── Az.AzureLargeInstance.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.AzureLargeInstance.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── AzureLargeInstance.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AzureLargeInstance.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstance.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstance.cs │ │ │ │ │ │ ├── AzureLargeInstance.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceIdentity.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceIdentity.cs │ │ │ │ │ │ ├── AzureLargeInstanceIdentity.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceListResult.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceListResult.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceListResult.cs │ │ │ │ │ │ ├── AzureLargeInstanceListResult.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceProperties.cs │ │ │ │ │ │ ├── AzureLargeInstanceProperties.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceRestartAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceRestartAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceRestartAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AzureLargeInstanceRestartAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceShutdownAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceShutdownAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceShutdownAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AzureLargeInstanceShutdownAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceStartAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceStartAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceStartAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AzureLargeInstanceStartAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdate.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdate.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdate.json.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdateTags.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdateTags.dictionary.cs │ │ │ │ │ │ ├── AzureLargeInstanceTagsUpdateTags.json.cs │ │ │ │ │ │ ├── AzureLargeStorageInstance.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeStorageInstance.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeStorageInstance.cs │ │ │ │ │ │ ├── AzureLargeStorageInstance.json.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceListResult.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceListResult.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceListResult.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceListResult.json.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceProperties.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceProperties.json.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdate.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdate.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdate.json.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdateTags.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdateTags.dictionary.cs │ │ │ │ │ │ ├── AzureLargeStorageInstanceTagsUpdateTags.json.cs │ │ │ │ │ │ ├── Disk.PowerShell.cs │ │ │ │ │ │ ├── Disk.TypeConverter.cs │ │ │ │ │ │ ├── Disk.cs │ │ │ │ │ │ ├── Disk.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ForceState.PowerShell.cs │ │ │ │ │ │ ├── ForceState.TypeConverter.cs │ │ │ │ │ │ ├── ForceState.cs │ │ │ │ │ │ ├── ForceState.json.cs │ │ │ │ │ │ ├── HardwareProfile.PowerShell.cs │ │ │ │ │ │ ├── HardwareProfile.TypeConverter.cs │ │ │ │ │ │ ├── HardwareProfile.cs │ │ │ │ │ │ ├── HardwareProfile.json.cs │ │ │ │ │ │ ├── IPAddress.PowerShell.cs │ │ │ │ │ │ ├── IPAddress.TypeConverter.cs │ │ │ │ │ │ ├── IPAddress.cs │ │ │ │ │ │ ├── IPAddress.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── NetworkProfile.PowerShell.cs │ │ │ │ │ │ ├── NetworkProfile.TypeConverter.cs │ │ │ │ │ │ ├── NetworkProfile.cs │ │ │ │ │ │ ├── NetworkProfile.json.cs │ │ │ │ │ │ ├── OSProfile.PowerShell.cs │ │ │ │ │ │ ├── OSProfile.TypeConverter.cs │ │ │ │ │ │ ├── OSProfile.cs │ │ │ │ │ │ ├── OSProfile.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationStatusResult.PowerShell.cs │ │ │ │ │ │ ├── OperationStatusResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationStatusResult.cs │ │ │ │ │ │ ├── OperationStatusResult.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── StorageBillingProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageBillingProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageBillingProperties.cs │ │ │ │ │ │ ├── StorageBillingProperties.json.cs │ │ │ │ │ │ ├── StorageProfile.PowerShell.cs │ │ │ │ │ │ ├── StorageProfile.TypeConverter.cs │ │ │ │ │ │ ├── StorageProfile.cs │ │ │ │ │ │ ├── StorageProfile.json.cs │ │ │ │ │ │ ├── StorageProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageProperties.cs │ │ │ │ │ │ ├── StorageProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ └── UserAssignedIdentity.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeInstance_Get.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeInstance_List.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeInstance_List1.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeStorageInstance_Get.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeStorageInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeStorageInstance_List.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceAzureLargeStorageInstance_List1.cs │ │ │ │ │ ├── GetAzAzureLargeInstanceOperation_List.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeInstance_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeStorageInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeStorageInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeStorageInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzAzureLargeInstanceAzureLargeStorageInstance_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzAzureLargeInstanceAzureLargeInstance_Delete.cs │ │ │ │ │ ├── RemoveAzAzureLargeInstanceAzureLargeInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzAzureLargeInstanceAzureLargeStorageInstance_Delete.cs │ │ │ │ │ ├── RemoveAzAzureLargeInstanceAzureLargeStorageInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── RestartAzAzureLargeInstanceAzureLargeInstance_Restart.cs │ │ │ │ │ ├── RestartAzAzureLargeInstanceAzureLargeInstance_RestartExpanded.cs │ │ │ │ │ ├── RestartAzAzureLargeInstanceAzureLargeInstance_RestartViaIdentity.cs │ │ │ │ │ ├── RestartAzAzureLargeInstanceAzureLargeInstance_RestartViaIdentityExpanded.cs │ │ │ │ │ ├── RestartAzAzureLargeInstanceAzureLargeInstance_RestartViaJsonFilePath.cs │ │ │ │ │ ├── RestartAzAzureLargeInstanceAzureLargeInstance_RestartViaJsonString.cs │ │ │ │ │ ├── StartAzAzureLargeInstanceAzureLargeInstance_Start.cs │ │ │ │ │ ├── StartAzAzureLargeInstanceAzureLargeInstance_StartViaIdentity.cs │ │ │ │ │ ├── StopAzAzureLargeInstanceAzureLargeInstance_Shutdown.cs │ │ │ │ │ ├── StopAzAzureLargeInstanceAzureLargeInstance_ShutdownViaIdentity.cs │ │ │ │ │ ├── UpdateAzAzureLargeInstanceAzureLargeInstance_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzAzureLargeInstanceAzureLargeInstance_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzAzureLargeInstanceAzureLargeInstance_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzAzureLargeInstanceAzureLargeInstance_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzAzureLargeInstanceAzureLargeStorageInstance_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzAzureLargeInstanceAzureLargeStorageInstance_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.AzureLargeInstance.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Chaos.Management.brown │ │ ├── back-compatible.tsp │ │ ├── capability.models.tsp │ │ ├── capability.tsp │ │ ├── capabilityType.models.tsp │ │ ├── capabilityType.tsp │ │ ├── client.tsp │ │ ├── common.models.tsp │ │ ├── experiment.models.tsp │ │ ├── experiment.tsp │ │ ├── experimentExecution.models.tsp │ │ ├── experimentExecution.tsp │ │ ├── main.tsp │ │ ├── operationStatus.tsp │ │ ├── privateAccess.models.tsp │ │ ├── privateAccess.tsp │ │ ├── privateEndpointConnection.models.tsp │ │ ├── privateEndpointConnection.tsp │ │ ├── sdk-suppressions.yaml │ │ ├── target.models.tsp │ │ ├── target.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Chaos.csproj │ │ │ ├── Az.Chaos.nuspec │ │ │ ├── Az.Chaos.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Chaos.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── ChaosManagementClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── ActionStatus.PowerShell.cs │ │ │ │ │ │ ├── ActionStatus.TypeConverter.cs │ │ │ │ │ │ ├── ActionStatus.cs │ │ │ │ │ │ ├── ActionStatus.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── BranchStatus.PowerShell.cs │ │ │ │ │ │ ├── BranchStatus.TypeConverter.cs │ │ │ │ │ │ ├── BranchStatus.cs │ │ │ │ │ │ ├── BranchStatus.json.cs │ │ │ │ │ │ ├── Capability.PowerShell.cs │ │ │ │ │ │ ├── Capability.TypeConverter.cs │ │ │ │ │ │ ├── Capability.cs │ │ │ │ │ │ ├── Capability.json.cs │ │ │ │ │ │ ├── CapabilityListResult.PowerShell.cs │ │ │ │ │ │ ├── CapabilityListResult.TypeConverter.cs │ │ │ │ │ │ ├── CapabilityListResult.cs │ │ │ │ │ │ ├── CapabilityListResult.json.cs │ │ │ │ │ │ ├── CapabilityProperties.PowerShell.cs │ │ │ │ │ │ ├── CapabilityProperties.TypeConverter.cs │ │ │ │ │ │ ├── CapabilityProperties.cs │ │ │ │ │ │ ├── CapabilityProperties.json.cs │ │ │ │ │ │ ├── CapabilityType.PowerShell.cs │ │ │ │ │ │ ├── CapabilityType.TypeConverter.cs │ │ │ │ │ │ ├── CapabilityType.cs │ │ │ │ │ │ ├── CapabilityType.json.cs │ │ │ │ │ │ ├── CapabilityTypeListResult.PowerShell.cs │ │ │ │ │ │ ├── CapabilityTypeListResult.TypeConverter.cs │ │ │ │ │ │ ├── CapabilityTypeListResult.cs │ │ │ │ │ │ ├── CapabilityTypeListResult.json.cs │ │ │ │ │ │ ├── CapabilityTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── CapabilityTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── CapabilityTypeProperties.cs │ │ │ │ │ │ ├── CapabilityTypeProperties.json.cs │ │ │ │ │ │ ├── CapabilityTypePropertiesRuntimeProperties.PowerShell.cs │ │ │ │ │ │ ├── CapabilityTypePropertiesRuntimeProperties.TypeConverter.cs │ │ │ │ │ │ ├── CapabilityTypePropertiesRuntimeProperties.cs │ │ │ │ │ │ ├── CapabilityTypePropertiesRuntimeProperties.json.cs │ │ │ │ │ │ ├── ChaosExperimentAction.PowerShell.cs │ │ │ │ │ │ ├── ChaosExperimentAction.TypeConverter.cs │ │ │ │ │ │ ├── ChaosExperimentAction.cs │ │ │ │ │ │ ├── ChaosExperimentAction.json.cs │ │ │ │ │ │ ├── ChaosExperimentBranch.PowerShell.cs │ │ │ │ │ │ ├── ChaosExperimentBranch.TypeConverter.cs │ │ │ │ │ │ ├── ChaosExperimentBranch.cs │ │ │ │ │ │ ├── ChaosExperimentBranch.json.cs │ │ │ │ │ │ ├── ChaosExperimentStep.PowerShell.cs │ │ │ │ │ │ ├── ChaosExperimentStep.TypeConverter.cs │ │ │ │ │ │ ├── ChaosExperimentStep.cs │ │ │ │ │ │ ├── ChaosExperimentStep.json.cs │ │ │ │ │ │ ├── ChaosIdentity.PowerShell.cs │ │ │ │ │ │ ├── ChaosIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ChaosIdentity.cs │ │ │ │ │ │ ├── ChaosIdentity.json.cs │ │ │ │ │ │ ├── ChaosTargetFilter.PowerShell.cs │ │ │ │ │ │ ├── ChaosTargetFilter.TypeConverter.cs │ │ │ │ │ │ ├── ChaosTargetFilter.cs │ │ │ │ │ │ ├── ChaosTargetFilter.json.cs │ │ │ │ │ │ ├── ChaosTargetListSelector.PowerShell.cs │ │ │ │ │ │ ├── ChaosTargetListSelector.TypeConverter.cs │ │ │ │ │ │ ├── ChaosTargetListSelector.cs │ │ │ │ │ │ ├── ChaosTargetListSelector.json.cs │ │ │ │ │ │ ├── ChaosTargetQuerySelector.PowerShell.cs │ │ │ │ │ │ ├── ChaosTargetQuerySelector.TypeConverter.cs │ │ │ │ │ │ ├── ChaosTargetQuerySelector.cs │ │ │ │ │ │ ├── ChaosTargetQuerySelector.json.cs │ │ │ │ │ │ ├── ChaosTargetSelector.PowerShell.cs │ │ │ │ │ │ ├── ChaosTargetSelector.TypeConverter.cs │ │ │ │ │ │ ├── ChaosTargetSelector.cs │ │ │ │ │ │ ├── ChaosTargetSelector.json.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilter.PowerShell.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilter.TypeConverter.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilter.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilter.json.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilterParameters.PowerShell.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilterParameters.TypeConverter.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilterParameters.cs │ │ │ │ │ │ ├── ChaosTargetSimpleFilterParameters.json.cs │ │ │ │ │ │ ├── ContinuousAction.PowerShell.cs │ │ │ │ │ │ ├── ContinuousAction.TypeConverter.cs │ │ │ │ │ │ ├── ContinuousAction.cs │ │ │ │ │ │ ├── ContinuousAction.json.cs │ │ │ │ │ │ ├── DelayAction.PowerShell.cs │ │ │ │ │ │ ├── DelayAction.TypeConverter.cs │ │ │ │ │ │ ├── DelayAction.cs │ │ │ │ │ │ ├── DelayAction.json.cs │ │ │ │ │ │ ├── DiscreteAction.PowerShell.cs │ │ │ │ │ │ ├── DiscreteAction.TypeConverter.cs │ │ │ │ │ │ ├── DiscreteAction.cs │ │ │ │ │ │ ├── DiscreteAction.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Experiment.PowerShell.cs │ │ │ │ │ │ ├── Experiment.TypeConverter.cs │ │ │ │ │ │ ├── Experiment.cs │ │ │ │ │ │ ├── Experiment.json.cs │ │ │ │ │ │ ├── ExperimentExecution.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecution.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecution.cs │ │ │ │ │ │ ├── ExperimentExecution.json.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsError.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsError.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsError.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsError.json.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsProperties.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsProperties.cs │ │ │ │ │ │ ├── ExperimentExecutionActionTargetDetailsProperties.json.cs │ │ │ │ │ │ ├── ExperimentExecutionDetails.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionDetails.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionDetails.cs │ │ │ │ │ │ ├── ExperimentExecutionDetails.json.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsProperties.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsProperties.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsProperties.json.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsPropertiesRunInformation.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsPropertiesRunInformation.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsPropertiesRunInformation.cs │ │ │ │ │ │ ├── ExperimentExecutionDetailsPropertiesRunInformation.json.cs │ │ │ │ │ │ ├── ExperimentExecutionListResult.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionListResult.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionListResult.cs │ │ │ │ │ │ ├── ExperimentExecutionListResult.json.cs │ │ │ │ │ │ ├── ExperimentExecutionProperties.PowerShell.cs │ │ │ │ │ │ ├── ExperimentExecutionProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentExecutionProperties.cs │ │ │ │ │ │ ├── ExperimentExecutionProperties.json.cs │ │ │ │ │ │ ├── ExperimentListResult.PowerShell.cs │ │ │ │ │ │ ├── ExperimentListResult.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentListResult.cs │ │ │ │ │ │ ├── ExperimentListResult.json.cs │ │ │ │ │ │ ├── ExperimentProperties.PowerShell.cs │ │ │ │ │ │ ├── ExperimentProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentProperties.cs │ │ │ │ │ │ ├── ExperimentProperties.json.cs │ │ │ │ │ │ ├── ExperimentUpdate.PowerShell.cs │ │ │ │ │ │ ├── ExperimentUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentUpdate.cs │ │ │ │ │ │ ├── ExperimentUpdate.json.cs │ │ │ │ │ │ ├── ExperimentUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── ExperimentUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── ExperimentUpdateTags.cs │ │ │ │ │ │ ├── ExperimentUpdateTags.dictionary.cs │ │ │ │ │ │ ├── ExperimentUpdateTags.json.cs │ │ │ │ │ │ ├── KeyValuePair.PowerShell.cs │ │ │ │ │ │ ├── KeyValuePair.TypeConverter.cs │ │ │ │ │ │ ├── KeyValuePair.cs │ │ │ │ │ │ ├── KeyValuePair.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationStatus.PowerShell.cs │ │ │ │ │ │ ├── OperationStatus.TypeConverter.cs │ │ │ │ │ │ ├── OperationStatus.cs │ │ │ │ │ │ ├── OperationStatus.json.cs │ │ │ │ │ │ ├── OperationStatusResult.PowerShell.cs │ │ │ │ │ │ ├── OperationStatusResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationStatusResult.cs │ │ │ │ │ │ ├── OperationStatusResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── StepStatus.PowerShell.cs │ │ │ │ │ │ ├── StepStatus.TypeConverter.cs │ │ │ │ │ │ ├── StepStatus.cs │ │ │ │ │ │ ├── StepStatus.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── Target.PowerShell.cs │ │ │ │ │ │ ├── Target.TypeConverter.cs │ │ │ │ │ │ ├── Target.cs │ │ │ │ │ │ ├── Target.json.cs │ │ │ │ │ │ ├── TargetListResult.PowerShell.cs │ │ │ │ │ │ ├── TargetListResult.TypeConverter.cs │ │ │ │ │ │ ├── TargetListResult.cs │ │ │ │ │ │ ├── TargetListResult.json.cs │ │ │ │ │ │ ├── TargetProperties.PowerShell.cs │ │ │ │ │ │ ├── TargetProperties.TypeConverter.cs │ │ │ │ │ │ ├── TargetProperties.cs │ │ │ │ │ │ ├── TargetProperties.dictionary.cs │ │ │ │ │ │ ├── TargetProperties.json.cs │ │ │ │ │ │ ├── TargetReference.PowerShell.cs │ │ │ │ │ │ ├── TargetReference.TypeConverter.cs │ │ │ │ │ │ ├── TargetReference.cs │ │ │ │ │ │ ├── TargetReference.json.cs │ │ │ │ │ │ ├── TargetType.PowerShell.cs │ │ │ │ │ │ ├── TargetType.TypeConverter.cs │ │ │ │ │ │ ├── TargetType.cs │ │ │ │ │ │ ├── TargetType.json.cs │ │ │ │ │ │ ├── TargetTypeListResult.PowerShell.cs │ │ │ │ │ │ ├── TargetTypeListResult.TypeConverter.cs │ │ │ │ │ │ ├── TargetTypeListResult.cs │ │ │ │ │ │ ├── TargetTypeListResult.json.cs │ │ │ │ │ │ ├── TargetTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── TargetTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── TargetTypeProperties.cs │ │ │ │ │ │ ├── TargetTypeProperties.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ └── UserAssignedIdentity.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzChaosCapabilityType_Get.cs │ │ │ │ │ ├── GetAzChaosCapabilityType_GetViaIdentity.cs │ │ │ │ │ ├── GetAzChaosCapabilityType_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzChaosCapabilityType_GetViaIdentityTargetType.cs │ │ │ │ │ ├── GetAzChaosCapabilityType_List.cs │ │ │ │ │ ├── GetAzChaosCapability_Get.cs │ │ │ │ │ ├── GetAzChaosCapability_GetViaIdentity.cs │ │ │ │ │ ├── GetAzChaosCapability_GetViaIdentityTarget.cs │ │ │ │ │ ├── GetAzChaosCapability_List.cs │ │ │ │ │ ├── GetAzChaosExecutionExperimentDetail_Execution.cs │ │ │ │ │ ├── GetAzChaosExecutionExperimentDetail_ExecutionViaIdentity.cs │ │ │ │ │ ├── GetAzChaosExecutionExperimentDetail_ExecutionViaIdentityExperiment.cs │ │ │ │ │ ├── GetAzChaosExperimentExecution_Get.cs │ │ │ │ │ ├── GetAzChaosExperimentExecution_GetViaIdentity.cs │ │ │ │ │ ├── GetAzChaosExperimentExecution_GetViaIdentityExperiment.cs │ │ │ │ │ ├── GetAzChaosExperimentExecution_List.cs │ │ │ │ │ ├── GetAzChaosExperiment_Get.cs │ │ │ │ │ ├── GetAzChaosExperiment_GetViaIdentity.cs │ │ │ │ │ ├── GetAzChaosExperiment_List.cs │ │ │ │ │ ├── GetAzChaosExperiment_List1.cs │ │ │ │ │ ├── GetAzChaosOperation_List.cs │ │ │ │ │ ├── GetAzChaosTargetType_Get.cs │ │ │ │ │ ├── GetAzChaosTargetType_GetViaIdentity.cs │ │ │ │ │ ├── GetAzChaosTargetType_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzChaosTargetType_List.cs │ │ │ │ │ ├── GetAzChaosTarget_Get.cs │ │ │ │ │ ├── GetAzChaosTarget_GetViaIdentity.cs │ │ │ │ │ ├── GetAzChaosTarget_List.cs │ │ │ │ │ ├── NewAzChaosCapability_CreateExpanded.cs │ │ │ │ │ ├── NewAzChaosCapability_CreateViaIdentityTargetExpanded.cs │ │ │ │ │ ├── NewAzChaosCapability_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzChaosCapability_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzChaosExperiment_CreateExpanded.cs │ │ │ │ │ ├── NewAzChaosExperiment_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzChaosExperiment_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzChaosTarget_CreateExpanded.cs │ │ │ │ │ ├── NewAzChaosTarget_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzChaosTarget_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzChaosCapability_Delete.cs │ │ │ │ │ ├── RemoveAzChaosCapability_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzChaosCapability_DeleteViaIdentityTarget.cs │ │ │ │ │ ├── RemoveAzChaosExperiment_Delete.cs │ │ │ │ │ ├── RemoveAzChaosExperiment_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzChaosTarget_Delete.cs │ │ │ │ │ ├── RemoveAzChaosTarget_DeleteViaIdentity.cs │ │ │ │ │ ├── StartAzChaosExperiment_Start.cs │ │ │ │ │ ├── StartAzChaosExperiment_StartViaIdentity.cs │ │ │ │ │ ├── StopAzChaosExperiment_Cancel.cs │ │ │ │ │ ├── StopAzChaosExperiment_CancelViaIdentity.cs │ │ │ │ │ ├── UpdateAzChaosCapability_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzChaosCapability_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzChaosCapability_UpdateViaIdentityTargetExpanded.cs │ │ │ │ │ ├── UpdateAzChaosExperiment_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzChaosExperiment_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzChaosTarget_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzChaosTarget_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Chaos.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ ├── targetType.models.tsp │ │ ├── targetType.tsp │ │ └── tspconfig.yaml │ ├── CodeSigning.Management │ │ ├── CertificateProfile.tsp │ │ ├── CodeSigningAccount.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.CodeSigning.csproj │ │ │ ├── Az.CodeSigning.nuspec │ │ │ ├── Az.CodeSigning.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.CodeSigning.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── CodeSigningManagementClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AccountSku.PowerShell.cs │ │ │ │ │ │ ├── AccountSku.TypeConverter.cs │ │ │ │ │ │ ├── AccountSku.cs │ │ │ │ │ │ ├── AccountSku.json.cs │ │ │ │ │ │ ├── AccountSkuPatch.PowerShell.cs │ │ │ │ │ │ ├── AccountSkuPatch.TypeConverter.cs │ │ │ │ │ │ ├── AccountSkuPatch.cs │ │ │ │ │ │ ├── AccountSkuPatch.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── Certificate.PowerShell.cs │ │ │ │ │ │ ├── Certificate.TypeConverter.cs │ │ │ │ │ │ ├── Certificate.cs │ │ │ │ │ │ ├── Certificate.json.cs │ │ │ │ │ │ ├── CertificateProfile.PowerShell.cs │ │ │ │ │ │ ├── CertificateProfile.TypeConverter.cs │ │ │ │ │ │ ├── CertificateProfile.cs │ │ │ │ │ │ ├── CertificateProfile.json.cs │ │ │ │ │ │ ├── CertificateProfileListResult.PowerShell.cs │ │ │ │ │ │ ├── CertificateProfileListResult.TypeConverter.cs │ │ │ │ │ │ ├── CertificateProfileListResult.cs │ │ │ │ │ │ ├── CertificateProfileListResult.json.cs │ │ │ │ │ │ ├── CertificateProfileProperties.PowerShell.cs │ │ │ │ │ │ ├── CertificateProfileProperties.TypeConverter.cs │ │ │ │ │ │ ├── CertificateProfileProperties.cs │ │ │ │ │ │ ├── CertificateProfileProperties.json.cs │ │ │ │ │ │ ├── CertificateProfilesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CertificateProfilesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CertificateProfilesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CertificateProfilesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CheckNameAvailability.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailability.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailability.cs │ │ │ │ │ │ ├── CheckNameAvailability.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.json.cs │ │ │ │ │ │ ├── CodeSigningAccount.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccount.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccount.cs │ │ │ │ │ │ ├── CodeSigningAccount.json.cs │ │ │ │ │ │ ├── CodeSigningAccountListResult.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountListResult.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountListResult.cs │ │ │ │ │ │ ├── CodeSigningAccountListResult.json.cs │ │ │ │ │ │ ├── CodeSigningAccountPatch.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountPatch.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountPatch.cs │ │ │ │ │ │ ├── CodeSigningAccountPatch.json.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchProperties.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchProperties.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchProperties.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchProperties.json.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchTags.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchTags.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchTags.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchTags.dictionary.cs │ │ │ │ │ │ ├── CodeSigningAccountPatchTags.json.cs │ │ │ │ │ │ ├── CodeSigningAccountProperties.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountProperties.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountProperties.cs │ │ │ │ │ │ ├── CodeSigningAccountProperties.json.cs │ │ │ │ │ │ ├── CodeSigningAccountsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CodeSigningAccountsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CodeSigningAccountsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningAccountsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningAccountsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CodeSigningAccountsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CodeSigningIdentity.PowerShell.cs │ │ │ │ │ │ ├── CodeSigningIdentity.TypeConverter.cs │ │ │ │ │ │ ├── CodeSigningIdentity.cs │ │ │ │ │ │ ├── CodeSigningIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── Revocation.PowerShell.cs │ │ │ │ │ │ ├── Revocation.TypeConverter.cs │ │ │ │ │ │ ├── Revocation.cs │ │ │ │ │ │ ├── Revocation.json.cs │ │ │ │ │ │ ├── RevokeCertificate.PowerShell.cs │ │ │ │ │ │ ├── RevokeCertificate.TypeConverter.cs │ │ │ │ │ │ ├── RevokeCertificate.cs │ │ │ │ │ │ ├── RevokeCertificate.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ └── TrackedResourceTags.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzCodeSigningAccount_Get.cs │ │ │ │ │ ├── GetAzCodeSigningAccount_GetViaIdentity.cs │ │ │ │ │ ├── GetAzCodeSigningAccount_List.cs │ │ │ │ │ ├── GetAzCodeSigningAccount_List1.cs │ │ │ │ │ ├── GetAzCodeSigningCertificateProfile_Get.cs │ │ │ │ │ ├── GetAzCodeSigningCertificateProfile_GetViaIdentity.cs │ │ │ │ │ ├── GetAzCodeSigningCertificateProfile_GetViaIdentityCodeSigningAccount.cs │ │ │ │ │ ├── GetAzCodeSigningCertificateProfile_List.cs │ │ │ │ │ ├── GetAzCodeSigningOperation_List.cs │ │ │ │ │ ├── NewAzCodeSigningAccount_CreateExpanded.cs │ │ │ │ │ ├── NewAzCodeSigningAccount_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzCodeSigningAccount_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzCodeSigningAccount_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzCodeSigningCertificateProfile_CreateExpanded.cs │ │ │ │ │ ├── NewAzCodeSigningCertificateProfile_CreateViaIdentityCodeSigningAccountExpanded.cs │ │ │ │ │ ├── NewAzCodeSigningCertificateProfile_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzCodeSigningCertificateProfile_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzCodeSigningCertificateProfile_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzCodeSigningAccount_Delete.cs │ │ │ │ │ ├── RemoveAzCodeSigningAccount_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzCodeSigningCertificateProfile_Delete.cs │ │ │ │ │ ├── RemoveAzCodeSigningCertificateProfile_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzCodeSigningCertificateProfile_DeleteViaIdentityCodeSigningAccount.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_Revoke.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeExpanded.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeViaIdentity.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeViaIdentityCodeSigningAccount.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeViaIdentityCodeSigningAccountExpanded.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeViaIdentityExpanded.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeViaJsonFilePath.cs │ │ │ │ │ ├── RevokeAzCodeSigningCertificateProfileCertificate_RevokeViaJsonString.cs │ │ │ │ │ ├── TestAzCodeSigningAccountNameAvailability_Check.cs │ │ │ │ │ ├── TestAzCodeSigningAccountNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzCodeSigningAccountNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzCodeSigningAccountNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzCodeSigningAccount_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzCodeSigningAccount_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzCodeSigningAccount_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzCodeSigningAccount_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzCodeSigningCertificateProfile_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzCodeSigningCertificateProfile_UpdateViaIdentityCodeSigningAccountExpanded.cs │ │ │ │ │ └── UpdateAzCodeSigningCertificateProfile_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.CodeSigning.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── ComputeSchedule.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2024-06-01-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesCancelOperations_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesCancelOperations_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteDeallocate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteDeallocate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteHibernate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteHibernate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteStart_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteStart_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationStatus_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationStatus_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitDeallocate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitDeallocate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitHibernate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitHibernate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitStart_MaximumSet_Gen.json │ │ │ │ └── ScheduledActions_VirtualMachinesSubmitStart_MinimumSet_Gen.json │ │ │ ├── 2024-08-15-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesCancelOperations_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesCancelOperations_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteDeallocate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteDeallocate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteHibernate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteHibernate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteStart_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteStart_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationErrors_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationErrors_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationStatus_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationStatus_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitDeallocate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitDeallocate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitHibernate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitHibernate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitStart_MaximumSet_Gen.json │ │ │ │ └── ScheduledActions_VirtualMachinesSubmitStart_MinimumSet_Gen.json │ │ │ └── 2024-10-01 │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesCancelOperations_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesCancelOperations_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteDeallocate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteDeallocate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteHibernate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteHibernate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteStart_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesExecuteStart_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationErrors_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationErrors_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationStatus_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesGetOperationStatus_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitDeallocate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitDeallocate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitHibernate_MaximumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitHibernate_MinimumSet_Gen.json │ │ │ │ ├── ScheduledActions_VirtualMachinesSubmitStart_MaximumSet_Gen.json │ │ │ │ └── ScheduledActions_VirtualMachinesSubmitStart_MinimumSet_Gen.json │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.ComputeSchedule.csproj │ │ │ ├── Az.ComputeSchedule.nuspec │ │ │ ├── Az.ComputeSchedule.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.ComputeSchedule.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftComputeSchedule.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── CancelOperationsRequest.PowerShell.cs │ │ │ │ │ │ ├── CancelOperationsRequest.TypeConverter.cs │ │ │ │ │ │ ├── CancelOperationsRequest.cs │ │ │ │ │ │ ├── CancelOperationsRequest.json.cs │ │ │ │ │ │ ├── CancelOperationsResponse.PowerShell.cs │ │ │ │ │ │ ├── CancelOperationsResponse.TypeConverter.cs │ │ │ │ │ │ ├── CancelOperationsResponse.cs │ │ │ │ │ │ ├── CancelOperationsResponse.json.cs │ │ │ │ │ │ ├── ComputeScheduleIdentity.PowerShell.cs │ │ │ │ │ │ ├── ComputeScheduleIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ComputeScheduleIdentity.cs │ │ │ │ │ │ ├── ComputeScheduleIdentity.json.cs │ │ │ │ │ │ ├── DeallocateResourceOperationResponse.PowerShell.cs │ │ │ │ │ │ ├── DeallocateResourceOperationResponse.TypeConverter.cs │ │ │ │ │ │ ├── DeallocateResourceOperationResponse.cs │ │ │ │ │ │ ├── DeallocateResourceOperationResponse.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExecuteDeallocateRequest.PowerShell.cs │ │ │ │ │ │ ├── ExecuteDeallocateRequest.TypeConverter.cs │ │ │ │ │ │ ├── ExecuteDeallocateRequest.cs │ │ │ │ │ │ ├── ExecuteDeallocateRequest.json.cs │ │ │ │ │ │ ├── ExecuteHibernateRequest.PowerShell.cs │ │ │ │ │ │ ├── ExecuteHibernateRequest.TypeConverter.cs │ │ │ │ │ │ ├── ExecuteHibernateRequest.cs │ │ │ │ │ │ ├── ExecuteHibernateRequest.json.cs │ │ │ │ │ │ ├── ExecuteStartRequest.PowerShell.cs │ │ │ │ │ │ ├── ExecuteStartRequest.TypeConverter.cs │ │ │ │ │ │ ├── ExecuteStartRequest.cs │ │ │ │ │ │ ├── ExecuteStartRequest.json.cs │ │ │ │ │ │ ├── ExecutionParameters.PowerShell.cs │ │ │ │ │ │ ├── ExecutionParameters.TypeConverter.cs │ │ │ │ │ │ ├── ExecutionParameters.cs │ │ │ │ │ │ ├── ExecutionParameters.json.cs │ │ │ │ │ │ ├── GetOperationErrorsRequest.PowerShell.cs │ │ │ │ │ │ ├── GetOperationErrorsRequest.TypeConverter.cs │ │ │ │ │ │ ├── GetOperationErrorsRequest.cs │ │ │ │ │ │ ├── GetOperationErrorsRequest.json.cs │ │ │ │ │ │ ├── GetOperationErrorsResponse.PowerShell.cs │ │ │ │ │ │ ├── GetOperationErrorsResponse.TypeConverter.cs │ │ │ │ │ │ ├── GetOperationErrorsResponse.cs │ │ │ │ │ │ ├── GetOperationErrorsResponse.json.cs │ │ │ │ │ │ ├── GetOperationStatusRequest.PowerShell.cs │ │ │ │ │ │ ├── GetOperationStatusRequest.TypeConverter.cs │ │ │ │ │ │ ├── GetOperationStatusRequest.cs │ │ │ │ │ │ ├── GetOperationStatusRequest.json.cs │ │ │ │ │ │ ├── GetOperationStatusResponse.PowerShell.cs │ │ │ │ │ │ ├── GetOperationStatusResponse.TypeConverter.cs │ │ │ │ │ │ ├── GetOperationStatusResponse.cs │ │ │ │ │ │ ├── GetOperationStatusResponse.json.cs │ │ │ │ │ │ ├── HibernateResourceOperationResponse.PowerShell.cs │ │ │ │ │ │ ├── HibernateResourceOperationResponse.TypeConverter.cs │ │ │ │ │ │ ├── HibernateResourceOperationResponse.cs │ │ │ │ │ │ ├── HibernateResourceOperationResponse.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationErrorDetails.PowerShell.cs │ │ │ │ │ │ ├── OperationErrorDetails.TypeConverter.cs │ │ │ │ │ │ ├── OperationErrorDetails.cs │ │ │ │ │ │ ├── OperationErrorDetails.json.cs │ │ │ │ │ │ ├── OperationErrorsResult.PowerShell.cs │ │ │ │ │ │ ├── OperationErrorsResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationErrorsResult.cs │ │ │ │ │ │ ├── OperationErrorsResult.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ResourceOperation.PowerShell.cs │ │ │ │ │ │ ├── ResourceOperation.TypeConverter.cs │ │ │ │ │ │ ├── ResourceOperation.cs │ │ │ │ │ │ ├── ResourceOperation.json.cs │ │ │ │ │ │ ├── ResourceOperationDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceOperationDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceOperationDetails.cs │ │ │ │ │ │ ├── ResourceOperationDetails.json.cs │ │ │ │ │ │ ├── ResourceOperationError.PowerShell.cs │ │ │ │ │ │ ├── ResourceOperationError.TypeConverter.cs │ │ │ │ │ │ ├── ResourceOperationError.cs │ │ │ │ │ │ ├── ResourceOperationError.json.cs │ │ │ │ │ │ ├── Resources.PowerShell.cs │ │ │ │ │ │ ├── Resources.TypeConverter.cs │ │ │ │ │ │ ├── Resources.cs │ │ │ │ │ │ ├── Resources.json.cs │ │ │ │ │ │ ├── RetryPolicy.PowerShell.cs │ │ │ │ │ │ ├── RetryPolicy.TypeConverter.cs │ │ │ │ │ │ ├── RetryPolicy.cs │ │ │ │ │ │ ├── RetryPolicy.json.cs │ │ │ │ │ │ ├── Schedule.PowerShell.cs │ │ │ │ │ │ ├── Schedule.TypeConverter.cs │ │ │ │ │ │ ├── Schedule.cs │ │ │ │ │ │ ├── Schedule.json.cs │ │ │ │ │ │ ├── StartResourceOperationResponse.PowerShell.cs │ │ │ │ │ │ ├── StartResourceOperationResponse.TypeConverter.cs │ │ │ │ │ │ ├── StartResourceOperationResponse.cs │ │ │ │ │ │ ├── StartResourceOperationResponse.json.cs │ │ │ │ │ │ ├── SubmitDeallocateRequest.PowerShell.cs │ │ │ │ │ │ ├── SubmitDeallocateRequest.TypeConverter.cs │ │ │ │ │ │ ├── SubmitDeallocateRequest.cs │ │ │ │ │ │ ├── SubmitDeallocateRequest.json.cs │ │ │ │ │ │ ├── SubmitHibernateRequest.PowerShell.cs │ │ │ │ │ │ ├── SubmitHibernateRequest.TypeConverter.cs │ │ │ │ │ │ ├── SubmitHibernateRequest.cs │ │ │ │ │ │ ├── SubmitHibernateRequest.json.cs │ │ │ │ │ │ ├── SubmitStartRequest.PowerShell.cs │ │ │ │ │ │ ├── SubmitStartRequest.TypeConverter.cs │ │ │ │ │ │ ├── SubmitStartRequest.cs │ │ │ │ │ │ └── SubmitStartRequest.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzComputeScheduleOperation_List.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_Get.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_Get1.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetExpanded.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetExpanded1.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaIdentity.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaIdentity1.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaIdentityExpanded.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaIdentityExpanded1.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaJsonFilePath1.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaJsonString.cs │ │ │ │ │ ├── GetAzComputeScheduleScheduledAction_GetViaJsonString1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_Execute.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_Execute1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_Execute2.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteExpanded.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteExpanded1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteExpanded2.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaIdentity.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaIdentity1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaIdentity2.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaIdentityExpanded1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaIdentityExpanded2.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaJsonFilePath1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaJsonFilePath2.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaJsonString.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaJsonString1.cs │ │ │ │ │ ├── InvokeAzComputeScheduleExecuteScheduledAction_ExecuteViaJsonString2.cs │ │ │ │ │ ├── StopAzComputeScheduleScheduledAction_Cancel.cs │ │ │ │ │ ├── StopAzComputeScheduleScheduledAction_CancelExpanded.cs │ │ │ │ │ ├── StopAzComputeScheduleScheduledAction_CancelViaIdentity.cs │ │ │ │ │ ├── StopAzComputeScheduleScheduledAction_CancelViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzComputeScheduleScheduledAction_CancelViaJsonFilePath.cs │ │ │ │ │ ├── StopAzComputeScheduleScheduledAction_CancelViaJsonString.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_Submit.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_Submit1.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_Submit2.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitExpanded.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitExpanded1.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitExpanded2.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaIdentity.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaIdentity1.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaIdentity2.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaIdentityExpanded.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaIdentityExpanded1.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaIdentityExpanded2.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaJsonFilePath.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaJsonFilePath1.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaJsonFilePath2.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaJsonString.cs │ │ │ │ │ ├── SubmitAzComputeScheduleScheduledAction_SubmitViaJsonString1.cs │ │ │ │ │ └── SubmitAzComputeScheduleScheduledAction_SubmitViaJsonString2.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.ComputeSchedule.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Dashboard.Management.brown │ │ ├── IntegrationFabric.tsp │ │ ├── ManagedDashboard.tsp │ │ ├── ManagedGrafana.tsp │ │ ├── ManagedPrivateEndpointModel.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── PrivateLinkResource.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Dashboard.csproj │ │ │ ├── Az.Dashboard.nuspec │ │ │ ├── Az.Dashboard.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Dashboard.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftDashboard.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AzureMonitorWorkspaceIntegration.PowerShell.cs │ │ │ │ │ │ ├── AzureMonitorWorkspaceIntegration.TypeConverter.cs │ │ │ │ │ │ ├── AzureMonitorWorkspaceIntegration.cs │ │ │ │ │ │ ├── AzureMonitorWorkspaceIntegration.json.cs │ │ │ │ │ │ ├── DashboardIdentity.PowerShell.cs │ │ │ │ │ │ ├── DashboardIdentity.TypeConverter.cs │ │ │ │ │ │ ├── DashboardIdentity.cs │ │ │ │ │ │ ├── DashboardIdentity.json.cs │ │ │ │ │ │ ├── EnterpriseConfigurations.PowerShell.cs │ │ │ │ │ │ ├── EnterpriseConfigurations.TypeConverter.cs │ │ │ │ │ │ ├── EnterpriseConfigurations.cs │ │ │ │ │ │ ├── EnterpriseConfigurations.json.cs │ │ │ │ │ │ ├── EnterpriseDetails.PowerShell.cs │ │ │ │ │ │ ├── EnterpriseDetails.TypeConverter.cs │ │ │ │ │ │ ├── EnterpriseDetails.cs │ │ │ │ │ │ ├── EnterpriseDetails.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── GrafanaAvailablePlugin.PowerShell.cs │ │ │ │ │ │ ├── GrafanaAvailablePlugin.TypeConverter.cs │ │ │ │ │ │ ├── GrafanaAvailablePlugin.cs │ │ │ │ │ │ ├── GrafanaAvailablePlugin.json.cs │ │ │ │ │ │ ├── GrafanaAvailablePluginListResponse.PowerShell.cs │ │ │ │ │ │ ├── GrafanaAvailablePluginListResponse.TypeConverter.cs │ │ │ │ │ │ ├── GrafanaAvailablePluginListResponse.cs │ │ │ │ │ │ ├── GrafanaAvailablePluginListResponse.json.cs │ │ │ │ │ │ ├── GrafanaConfigurations.PowerShell.cs │ │ │ │ │ │ ├── GrafanaConfigurations.TypeConverter.cs │ │ │ │ │ │ ├── GrafanaConfigurations.cs │ │ │ │ │ │ ├── GrafanaConfigurations.json.cs │ │ │ │ │ │ ├── GrafanaIntegrations.PowerShell.cs │ │ │ │ │ │ ├── GrafanaIntegrations.TypeConverter.cs │ │ │ │ │ │ ├── GrafanaIntegrations.cs │ │ │ │ │ │ ├── GrafanaIntegrations.json.cs │ │ │ │ │ │ ├── GrafanaPlugin.PowerShell.cs │ │ │ │ │ │ ├── GrafanaPlugin.TypeConverter.cs │ │ │ │ │ │ ├── GrafanaPlugin.cs │ │ │ │ │ │ ├── GrafanaPlugin.json.cs │ │ │ │ │ │ ├── IntegrationFabric.PowerShell.cs │ │ │ │ │ │ ├── IntegrationFabric.TypeConverter.cs │ │ │ │ │ │ ├── IntegrationFabric.cs │ │ │ │ │ │ ├── IntegrationFabric.json.cs │ │ │ │ │ │ ├── IntegrationFabricListResponse.PowerShell.cs │ │ │ │ │ │ ├── IntegrationFabricListResponse.TypeConverter.cs │ │ │ │ │ │ ├── IntegrationFabricListResponse.cs │ │ │ │ │ │ ├── IntegrationFabricListResponse.json.cs │ │ │ │ │ │ ├── IntegrationFabricProperties.PowerShell.cs │ │ │ │ │ │ ├── IntegrationFabricProperties.TypeConverter.cs │ │ │ │ │ │ ├── IntegrationFabricProperties.cs │ │ │ │ │ │ ├── IntegrationFabricProperties.json.cs │ │ │ │ │ │ ├── IntegrationFabricPropertiesUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── IntegrationFabricPropertiesUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── IntegrationFabricPropertiesUpdateParameters.cs │ │ │ │ │ │ ├── IntegrationFabricPropertiesUpdateParameters.json.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParameters.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParameters.json.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParametersTags.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── IntegrationFabricUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ManagedDashboard.PowerShell.cs │ │ │ │ │ │ ├── ManagedDashboard.TypeConverter.cs │ │ │ │ │ │ ├── ManagedDashboard.cs │ │ │ │ │ │ ├── ManagedDashboard.json.cs │ │ │ │ │ │ ├── ManagedDashboardListResponse.PowerShell.cs │ │ │ │ │ │ ├── ManagedDashboardListResponse.TypeConverter.cs │ │ │ │ │ │ ├── ManagedDashboardListResponse.cs │ │ │ │ │ │ ├── ManagedDashboardListResponse.json.cs │ │ │ │ │ │ ├── ManagedDashboardProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedDashboardProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedDashboardProperties.cs │ │ │ │ │ │ ├── ManagedDashboardProperties.json.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParameters.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParameters.json.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParametersTags.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ManagedDashboardUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ManagedGrafana.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafana.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafana.cs │ │ │ │ │ │ ├── ManagedGrafana.json.cs │ │ │ │ │ │ ├── ManagedGrafanaListResponse.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaListResponse.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaListResponse.cs │ │ │ │ │ │ ├── ManagedGrafanaListResponse.json.cs │ │ │ │ │ │ ├── ManagedGrafanaProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaProperties.cs │ │ │ │ │ │ ├── ManagedGrafanaProperties.json.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesGrafanaPlugins.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesGrafanaPlugins.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesGrafanaPlugins.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesGrafanaPlugins.dictionary.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesGrafanaPlugins.json.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParameters.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParameters.json.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParametersGrafanaPlugins.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParametersGrafanaPlugins.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParametersGrafanaPlugins.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParametersGrafanaPlugins.dictionary.cs │ │ │ │ │ │ ├── ManagedGrafanaPropertiesUpdateParametersGrafanaPlugins.json.cs │ │ │ │ │ │ ├── ManagedGrafanaTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaTags.cs │ │ │ │ │ │ ├── ManagedGrafanaTags.dictionary.cs │ │ │ │ │ │ ├── ManagedGrafanaTags.json.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParameters.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParameters.json.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParametersTags.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ManagedGrafanaUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointConnectionState.PowerShell.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointConnectionState.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointConnectionState.json.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModel.PowerShell.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModel.TypeConverter.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModel.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModel.json.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelListResponse.PowerShell.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelListResponse.TypeConverter.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelListResponse.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelListResponse.json.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelProperties.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointModelProperties.json.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParameters.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParameters.json.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParametersTags.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ManagedPrivateEndpointUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MarketplaceTrialQuota.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceTrialQuota.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceTrialQuota.cs │ │ │ │ │ │ ├── MarketplaceTrialQuota.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceSku.PowerShell.cs │ │ │ │ │ │ ├── ResourceSku.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSku.cs │ │ │ │ │ │ ├── ResourceSku.json.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.PowerShell.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.TypeConverter.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.json.cs │ │ │ │ │ │ ├── Security.PowerShell.cs │ │ │ │ │ │ ├── Security.TypeConverter.cs │ │ │ │ │ │ ├── Security.cs │ │ │ │ │ │ ├── Security.json.cs │ │ │ │ │ │ ├── Smtp.PowerShell.cs │ │ │ │ │ │ ├── Smtp.TypeConverter.cs │ │ │ │ │ │ ├── Smtp.cs │ │ │ │ │ │ ├── Smtp.json.cs │ │ │ │ │ │ ├── Snapshots.PowerShell.cs │ │ │ │ │ │ ├── Snapshots.TypeConverter.cs │ │ │ │ │ │ ├── Snapshots.cs │ │ │ │ │ │ ├── Snapshots.json.cs │ │ │ │ │ │ ├── SubscriptionTerm.PowerShell.cs │ │ │ │ │ │ ├── SubscriptionTerm.TypeConverter.cs │ │ │ │ │ │ ├── SubscriptionTerm.cs │ │ │ │ │ │ ├── SubscriptionTerm.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UnifiedAlertingScreenshots.PowerShell.cs │ │ │ │ │ │ ├── UnifiedAlertingScreenshots.TypeConverter.cs │ │ │ │ │ │ ├── UnifiedAlertingScreenshots.cs │ │ │ │ │ │ ├── UnifiedAlertingScreenshots.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── Users.PowerShell.cs │ │ │ │ │ │ ├── Users.TypeConverter.cs │ │ │ │ │ │ ├── Users.cs │ │ │ │ │ │ └── Users.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzDashboardGrafana_Get.cs │ │ │ │ │ ├── GetAzDashboardGrafana_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDashboardGrafana_List.cs │ │ │ │ │ ├── GetAzDashboardGrafana_List1.cs │ │ │ │ │ ├── GetAzDashboardIntegrationFabric_Get.cs │ │ │ │ │ ├── GetAzDashboardIntegrationFabric_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDashboardIntegrationFabric_GetViaIdentityGrafana.cs │ │ │ │ │ ├── GetAzDashboardIntegrationFabric_List.cs │ │ │ │ │ ├── GetAzDashboardManagedPrivateEndpoint_Get.cs │ │ │ │ │ ├── GetAzDashboardManagedPrivateEndpoint_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDashboardManagedPrivateEndpoint_GetViaIdentityGrafana.cs │ │ │ │ │ ├── GetAzDashboardManagedPrivateEndpoint_List.cs │ │ │ │ │ ├── GetAzDashboardOperation_List.cs │ │ │ │ │ ├── GetAzDashboard_Get.cs │ │ │ │ │ ├── GetAzDashboard_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDashboard_List.cs │ │ │ │ │ ├── GetAzDashboard_List1.cs │ │ │ │ │ ├── InvokeAzDashboardFetchGrafanaAvailablePlugin_Fetch.cs │ │ │ │ │ ├── InvokeAzDashboardFetchGrafanaAvailablePlugin_FetchViaIdentity.cs │ │ │ │ │ ├── NewAzDashboardGrafana_CreateExpanded.cs │ │ │ │ │ ├── NewAzDashboardGrafana_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDashboardGrafana_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDashboardIntegrationFabric_CreateExpanded.cs │ │ │ │ │ ├── NewAzDashboardIntegrationFabric_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDashboardIntegrationFabric_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDashboardManagedDashboard_CreateExpanded.cs │ │ │ │ │ ├── NewAzDashboardManagedDashboard_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDashboardManagedDashboard_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDashboardManagedPrivateEndpoint_CreateExpanded.cs │ │ │ │ │ ├── NewAzDashboardManagedPrivateEndpoint_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDashboardManagedPrivateEndpoint_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzDashboardGrafana_Delete.cs │ │ │ │ │ ├── RemoveAzDashboardGrafana_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDashboardIntegrationFabric_Delete.cs │ │ │ │ │ ├── RemoveAzDashboardIntegrationFabric_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDashboardIntegrationFabric_DeleteViaIdentityGrafana.cs │ │ │ │ │ ├── RemoveAzDashboardManagedDashboard_Delete.cs │ │ │ │ │ ├── RemoveAzDashboardManagedDashboard_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDashboardManagedPrivateEndpoint_Delete.cs │ │ │ │ │ ├── RemoveAzDashboardManagedPrivateEndpoint_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDashboardManagedPrivateEndpoint_DeleteViaIdentityGrafana.cs │ │ │ │ │ ├── TestAzDashboardGrafanaEnterpriseDetail_Check.cs │ │ │ │ │ ├── TestAzDashboardGrafanaEnterpriseDetail_CheckViaIdentity.cs │ │ │ │ │ ├── UpdateAzDashboardGrafana_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardGrafana_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardIntegrationFabric_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardIntegrationFabric_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardIntegrationFabric_UpdateViaIdentityGrafanaExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardIntegrationFabric_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzDashboardIntegrationFabric_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzDashboardManagedDashboard_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardManagedDashboard_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardManagedDashboard_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzDashboardManagedDashboard_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzDashboardManagedPrivateEndpoint_Refresh.cs │ │ │ │ │ ├── UpdateAzDashboardManagedPrivateEndpoint_RefreshViaIdentity.cs │ │ │ │ │ ├── UpdateAzDashboardManagedPrivateEndpoint_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardManagedPrivateEndpoint_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardManagedPrivateEndpoint_UpdateViaIdentityGrafanaExpanded.cs │ │ │ │ │ ├── UpdateAzDashboardManagedPrivateEndpoint_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzDashboardManagedPrivateEndpoint_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Dashboard.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── DataBox.Management.brown │ │ ├── JobResource.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── preview │ │ │ ├── 2021-08-01-preview │ │ │ │ └── databox.json │ │ │ ├── 2024-02-01-preview │ │ │ │ └── databox.json │ │ │ └── 2024-03-01-preview │ │ │ │ └── databox.json │ │ ├── readme.az.md │ │ ├── readme.cli.md │ │ ├── readme.go.md │ │ ├── readme.java.md │ │ ├── readme.md │ │ ├── readme.nodejs.md │ │ ├── readme.python.md │ │ ├── readme.typescript.md │ │ ├── routes.tsp │ │ ├── stable │ │ │ ├── 2018-01-01 │ │ │ │ └── databox.json │ │ │ ├── 2019-09-01 │ │ │ │ └── databox.json │ │ │ ├── 2020-04-01 │ │ │ │ └── databox.json │ │ │ ├── 2020-11-01 │ │ │ │ └── databox.json │ │ │ ├── 2021-03-01 │ │ │ │ └── databox.json │ │ │ ├── 2021-05-01 │ │ │ │ └── databox.json │ │ │ ├── 2021-12-01 │ │ │ │ └── databox.json │ │ │ ├── 2022-02-01 │ │ │ │ └── databox.json │ │ │ ├── 2022-09-01 │ │ │ │ └── databox.json │ │ │ ├── 2022-10-01 │ │ │ │ └── databox.json │ │ │ ├── 2022-12-01 │ │ │ │ └── databox.json │ │ │ ├── 2023-03-01 │ │ │ │ └── databox.json │ │ │ ├── 2023-12-01 │ │ │ │ └── databox.json │ │ │ ├── 2025-02-01 │ │ │ │ └── databox.json │ │ │ └── 2025-07-01 │ │ │ │ └── databox.json │ │ ├── suppressions.yaml │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.DataBox.csproj │ │ │ ├── Az.DataBox.nuspec │ │ │ ├── Az.DataBox.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.DataBox.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── DataBoxManagementClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AccountCredentialDetails.PowerShell.cs │ │ │ │ │ │ ├── AccountCredentialDetails.TypeConverter.cs │ │ │ │ │ │ ├── AccountCredentialDetails.cs │ │ │ │ │ │ ├── AccountCredentialDetails.json.cs │ │ │ │ │ │ ├── AdditionalErrorInfo.PowerShell.cs │ │ │ │ │ │ ├── AdditionalErrorInfo.TypeConverter.cs │ │ │ │ │ │ ├── AdditionalErrorInfo.cs │ │ │ │ │ │ ├── AdditionalErrorInfo.dictionary.cs │ │ │ │ │ │ ├── AdditionalErrorInfo.json.cs │ │ │ │ │ │ ├── AdditionalErrorInfo1.PowerShell.cs │ │ │ │ │ │ ├── AdditionalErrorInfo1.TypeConverter.cs │ │ │ │ │ │ ├── AdditionalErrorInfo1.cs │ │ │ │ │ │ ├── AdditionalErrorInfo1.json.cs │ │ │ │ │ │ ├── AddressValidationOutput.PowerShell.cs │ │ │ │ │ │ ├── AddressValidationOutput.TypeConverter.cs │ │ │ │ │ │ ├── AddressValidationOutput.cs │ │ │ │ │ │ ├── AddressValidationOutput.json.cs │ │ │ │ │ │ ├── AddressValidationProperties.PowerShell.cs │ │ │ │ │ │ ├── AddressValidationProperties.TypeConverter.cs │ │ │ │ │ │ ├── AddressValidationProperties.cs │ │ │ │ │ │ ├── AddressValidationProperties.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApiError.PowerShell.cs │ │ │ │ │ │ ├── ApiError.TypeConverter.cs │ │ │ │ │ │ ├── ApiError.cs │ │ │ │ │ │ ├── ApiError.json.cs │ │ │ │ │ │ ├── ApplianceNetworkConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ApplianceNetworkConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ApplianceNetworkConfiguration.cs │ │ │ │ │ │ ├── ApplianceNetworkConfiguration.json.cs │ │ │ │ │ │ ├── AvailableSkuRequest.PowerShell.cs │ │ │ │ │ │ ├── AvailableSkuRequest.TypeConverter.cs │ │ │ │ │ │ ├── AvailableSkuRequest.cs │ │ │ │ │ │ ├── AvailableSkuRequest.json.cs │ │ │ │ │ │ ├── AvailableSkusResult.PowerShell.cs │ │ │ │ │ │ ├── AvailableSkusResult.TypeConverter.cs │ │ │ │ │ │ ├── AvailableSkusResult.cs │ │ │ │ │ │ ├── AvailableSkusResult.json.cs │ │ │ │ │ │ ├── AzureFileFilterDetails.PowerShell.cs │ │ │ │ │ │ ├── AzureFileFilterDetails.TypeConverter.cs │ │ │ │ │ │ ├── AzureFileFilterDetails.cs │ │ │ │ │ │ ├── AzureFileFilterDetails.json.cs │ │ │ │ │ │ ├── BlobFilterDetails.PowerShell.cs │ │ │ │ │ │ ├── BlobFilterDetails.TypeConverter.cs │ │ │ │ │ │ ├── BlobFilterDetails.cs │ │ │ │ │ │ ├── BlobFilterDetails.json.cs │ │ │ │ │ │ ├── CancellationReason.PowerShell.cs │ │ │ │ │ │ ├── CancellationReason.TypeConverter.cs │ │ │ │ │ │ ├── CancellationReason.cs │ │ │ │ │ │ ├── CancellationReason.json.cs │ │ │ │ │ │ ├── CloudError.PowerShell.cs │ │ │ │ │ │ ├── CloudError.TypeConverter.cs │ │ │ │ │ │ ├── CloudError.cs │ │ │ │ │ │ ├── CloudError.json.cs │ │ │ │ │ │ ├── ContactDetails.PowerShell.cs │ │ │ │ │ │ ├── ContactDetails.TypeConverter.cs │ │ │ │ │ │ ├── ContactDetails.cs │ │ │ │ │ │ ├── ContactDetails.json.cs │ │ │ │ │ │ ├── ContactInfo.PowerShell.cs │ │ │ │ │ │ ├── ContactInfo.TypeConverter.cs │ │ │ │ │ │ ├── ContactInfo.cs │ │ │ │ │ │ ├── ContactInfo.json.cs │ │ │ │ │ │ ├── CopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── CopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── CopyLogDetails.cs │ │ │ │ │ │ ├── CopyLogDetails.json.cs │ │ │ │ │ │ ├── CopyProgress.PowerShell.cs │ │ │ │ │ │ ├── CopyProgress.TypeConverter.cs │ │ │ │ │ │ ├── CopyProgress.cs │ │ │ │ │ │ ├── CopyProgress.json.cs │ │ │ │ │ │ ├── CreateJobValidations.PowerShell.cs │ │ │ │ │ │ ├── CreateJobValidations.TypeConverter.cs │ │ │ │ │ │ ├── CreateJobValidations.cs │ │ │ │ │ │ ├── CreateJobValidations.json.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationRequest.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationRequest.json.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationResponseProperties.cs │ │ │ │ │ │ ├── CreateOrderLimitForSubscriptionValidationResponseProperties.json.cs │ │ │ │ │ │ ├── CustomerDiskJobSecrets.PowerShell.cs │ │ │ │ │ │ ├── CustomerDiskJobSecrets.TypeConverter.cs │ │ │ │ │ │ ├── CustomerDiskJobSecrets.cs │ │ │ │ │ │ ├── CustomerDiskJobSecrets.json.cs │ │ │ │ │ │ ├── DataAccountDetails.PowerShell.cs │ │ │ │ │ │ ├── DataAccountDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataAccountDetails.cs │ │ │ │ │ │ ├── DataAccountDetails.json.cs │ │ │ │ │ │ ├── DataBoxAccountCopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxAccountCopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxAccountCopyLogDetails.cs │ │ │ │ │ │ ├── DataBoxAccountCopyLogDetails.json.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyLogDetails.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyLogDetails.json.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyProgress.PowerShell.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyProgress.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyProgress.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskCopyProgress.json.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetails.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetails.json.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsExportDiskDetailsCollection.PowerShell.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsExportDiskDetailsCollection.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsExportDiskDetailsCollection.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsExportDiskDetailsCollection.dictionary.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsExportDiskDetailsCollection.json.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsImportDiskDetailsCollection.PowerShell.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsImportDiskDetailsCollection.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsImportDiskDetailsCollection.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsImportDiskDetailsCollection.dictionary.cs │ │ │ │ │ │ ├── DataBoxCustomerDiskJobDetailsImportDiskDetailsCollection.json.cs │ │ │ │ │ │ ├── DataBoxDiskCopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskCopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskCopyLogDetails.cs │ │ │ │ │ │ ├── DataBoxDiskCopyLogDetails.json.cs │ │ │ │ │ │ ├── DataBoxDiskCopyProgress.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskCopyProgress.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskCopyProgress.cs │ │ │ │ │ │ ├── DataBoxDiskCopyProgress.json.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyLogDetails.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyLogDetails.json.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyProgress.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyProgress.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyProgress.cs │ │ │ │ │ │ ├── DataBoxDiskGranularCopyProgress.json.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetails.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetails.json.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsDisksAndSizeDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsDisksAndSizeDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsDisksAndSizeDetails.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsDisksAndSizeDetails.dictionary.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsDisksAndSizeDetails.json.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsPreferredDisks.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsPreferredDisks.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsPreferredDisks.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsPreferredDisks.dictionary.cs │ │ │ │ │ │ ├── DataBoxDiskJobDetailsPreferredDisks.json.cs │ │ │ │ │ │ ├── DataBoxDiskJobSecrets.PowerShell.cs │ │ │ │ │ │ ├── DataBoxDiskJobSecrets.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxDiskJobSecrets.cs │ │ │ │ │ │ ├── DataBoxDiskJobSecrets.json.cs │ │ │ │ │ │ ├── DataBoxHeavyAccountCopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxHeavyAccountCopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxHeavyAccountCopyLogDetails.cs │ │ │ │ │ │ ├── DataBoxHeavyAccountCopyLogDetails.json.cs │ │ │ │ │ │ ├── DataBoxHeavyJobDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxHeavyJobDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxHeavyJobDetails.cs │ │ │ │ │ │ ├── DataBoxHeavyJobDetails.json.cs │ │ │ │ │ │ ├── DataBoxHeavyJobSecrets.PowerShell.cs │ │ │ │ │ │ ├── DataBoxHeavyJobSecrets.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxHeavyJobSecrets.cs │ │ │ │ │ │ ├── DataBoxHeavyJobSecrets.json.cs │ │ │ │ │ │ ├── DataBoxHeavySecret.PowerShell.cs │ │ │ │ │ │ ├── DataBoxHeavySecret.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxHeavySecret.cs │ │ │ │ │ │ ├── DataBoxHeavySecret.json.cs │ │ │ │ │ │ ├── DataBoxIdentity.PowerShell.cs │ │ │ │ │ │ ├── DataBoxIdentity.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxIdentity.cs │ │ │ │ │ │ ├── DataBoxIdentity.json.cs │ │ │ │ │ │ ├── DataBoxJobDetails.PowerShell.cs │ │ │ │ │ │ ├── DataBoxJobDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxJobDetails.cs │ │ │ │ │ │ ├── DataBoxJobDetails.json.cs │ │ │ │ │ │ ├── DataBoxScheduleAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── DataBoxScheduleAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxScheduleAvailabilityRequest.cs │ │ │ │ │ │ ├── DataBoxScheduleAvailabilityRequest.json.cs │ │ │ │ │ │ ├── DataBoxSecret.PowerShell.cs │ │ │ │ │ │ ├── DataBoxSecret.TypeConverter.cs │ │ │ │ │ │ ├── DataBoxSecret.cs │ │ │ │ │ │ ├── DataBoxSecret.json.cs │ │ │ │ │ │ ├── DataExportDetails.PowerShell.cs │ │ │ │ │ │ ├── DataExportDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataExportDetails.cs │ │ │ │ │ │ ├── DataExportDetails.json.cs │ │ │ │ │ │ ├── DataImportDetails.PowerShell.cs │ │ │ │ │ │ ├── DataImportDetails.TypeConverter.cs │ │ │ │ │ │ ├── DataImportDetails.cs │ │ │ │ │ │ ├── DataImportDetails.json.cs │ │ │ │ │ │ ├── DataLocationToServiceLocationMap.PowerShell.cs │ │ │ │ │ │ ├── DataLocationToServiceLocationMap.TypeConverter.cs │ │ │ │ │ │ ├── DataLocationToServiceLocationMap.cs │ │ │ │ │ │ ├── DataLocationToServiceLocationMap.json.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationRequest.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationRequest.json.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationResponseProperties.cs │ │ │ │ │ │ ├── DataTransferDetailsValidationResponseProperties.json.cs │ │ │ │ │ │ ├── DataboxJobSecrets.PowerShell.cs │ │ │ │ │ │ ├── DataboxJobSecrets.TypeConverter.cs │ │ │ │ │ │ ├── DataboxJobSecrets.cs │ │ │ │ │ │ ├── DataboxJobSecrets.json.cs │ │ │ │ │ │ ├── DatacenterAddressInstructionResponse.PowerShell.cs │ │ │ │ │ │ ├── DatacenterAddressInstructionResponse.TypeConverter.cs │ │ │ │ │ │ ├── DatacenterAddressInstructionResponse.cs │ │ │ │ │ │ ├── DatacenterAddressInstructionResponse.json.cs │ │ │ │ │ │ ├── DatacenterAddressLocationResponse.PowerShell.cs │ │ │ │ │ │ ├── DatacenterAddressLocationResponse.TypeConverter.cs │ │ │ │ │ │ ├── DatacenterAddressLocationResponse.cs │ │ │ │ │ │ ├── DatacenterAddressLocationResponse.json.cs │ │ │ │ │ │ ├── DatacenterAddressRequest.PowerShell.cs │ │ │ │ │ │ ├── DatacenterAddressRequest.TypeConverter.cs │ │ │ │ │ │ ├── DatacenterAddressRequest.cs │ │ │ │ │ │ ├── DatacenterAddressRequest.json.cs │ │ │ │ │ │ ├── DatacenterAddressResponse.PowerShell.cs │ │ │ │ │ │ ├── DatacenterAddressResponse.TypeConverter.cs │ │ │ │ │ │ ├── DatacenterAddressResponse.cs │ │ │ │ │ │ ├── DatacenterAddressResponse.json.cs │ │ │ │ │ │ ├── DcAccessSecurityCode.PowerShell.cs │ │ │ │ │ │ ├── DcAccessSecurityCode.TypeConverter.cs │ │ │ │ │ │ ├── DcAccessSecurityCode.cs │ │ │ │ │ │ ├── DcAccessSecurityCode.json.cs │ │ │ │ │ │ ├── Details.PowerShell.cs │ │ │ │ │ │ ├── Details.TypeConverter.cs │ │ │ │ │ │ ├── Details.cs │ │ │ │ │ │ ├── Details.json.cs │ │ │ │ │ │ ├── DeviceCapabilityDetails.PowerShell.cs │ │ │ │ │ │ ├── DeviceCapabilityDetails.TypeConverter.cs │ │ │ │ │ │ ├── DeviceCapabilityDetails.cs │ │ │ │ │ │ ├── DeviceCapabilityDetails.json.cs │ │ │ │ │ │ ├── DeviceCapabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── DeviceCapabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── DeviceCapabilityRequest.cs │ │ │ │ │ │ ├── DeviceCapabilityRequest.json.cs │ │ │ │ │ │ ├── DeviceCapabilityResponse.PowerShell.cs │ │ │ │ │ │ ├── DeviceCapabilityResponse.TypeConverter.cs │ │ │ │ │ │ ├── DeviceCapabilityResponse.cs │ │ │ │ │ │ ├── DeviceCapabilityResponse.json.cs │ │ │ │ │ │ ├── DeviceErasureDetails.PowerShell.cs │ │ │ │ │ │ ├── DeviceErasureDetails.TypeConverter.cs │ │ │ │ │ │ ├── DeviceErasureDetails.cs │ │ │ │ │ │ ├── DeviceErasureDetails.json.cs │ │ │ │ │ │ ├── DiskScheduleAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── DiskScheduleAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── DiskScheduleAvailabilityRequest.cs │ │ │ │ │ │ ├── DiskScheduleAvailabilityRequest.json.cs │ │ │ │ │ │ ├── DiskSecret.PowerShell.cs │ │ │ │ │ │ ├── DiskSecret.TypeConverter.cs │ │ │ │ │ │ ├── DiskSecret.cs │ │ │ │ │ │ ├── DiskSecret.json.cs │ │ │ │ │ │ ├── EncryptionPreferences.PowerShell.cs │ │ │ │ │ │ ├── EncryptionPreferences.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionPreferences.cs │ │ │ │ │ │ ├── EncryptionPreferences.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ExportDiskDetails.PowerShell.cs │ │ │ │ │ │ ├── ExportDiskDetails.TypeConverter.cs │ │ │ │ │ │ ├── ExportDiskDetails.cs │ │ │ │ │ │ ├── ExportDiskDetails.json.cs │ │ │ │ │ │ ├── FilterFileDetails.PowerShell.cs │ │ │ │ │ │ ├── FilterFileDetails.TypeConverter.cs │ │ │ │ │ │ ├── FilterFileDetails.cs │ │ │ │ │ │ ├── FilterFileDetails.json.cs │ │ │ │ │ │ ├── GranularCopyLogDetails.PowerShell.cs │ │ │ │ │ │ ├── GranularCopyLogDetails.TypeConverter.cs │ │ │ │ │ │ ├── GranularCopyLogDetails.cs │ │ │ │ │ │ ├── GranularCopyLogDetails.json.cs │ │ │ │ │ │ ├── GranularCopyProgress.PowerShell.cs │ │ │ │ │ │ ├── GranularCopyProgress.TypeConverter.cs │ │ │ │ │ │ ├── GranularCopyProgress.cs │ │ │ │ │ │ ├── GranularCopyProgress.json.cs │ │ │ │ │ │ ├── HeavyScheduleAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── HeavyScheduleAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── HeavyScheduleAvailabilityRequest.cs │ │ │ │ │ │ ├── HeavyScheduleAvailabilityRequest.json.cs │ │ │ │ │ │ ├── IdentityProperties.PowerShell.cs │ │ │ │ │ │ ├── IdentityProperties.TypeConverter.cs │ │ │ │ │ │ ├── IdentityProperties.cs │ │ │ │ │ │ ├── IdentityProperties.json.cs │ │ │ │ │ │ ├── ImportDiskDetails.PowerShell.cs │ │ │ │ │ │ ├── ImportDiskDetails.TypeConverter.cs │ │ │ │ │ │ ├── ImportDiskDetails.cs │ │ │ │ │ │ ├── ImportDiskDetails.json.cs │ │ │ │ │ │ ├── JobDelayDetails.PowerShell.cs │ │ │ │ │ │ ├── JobDelayDetails.TypeConverter.cs │ │ │ │ │ │ ├── JobDelayDetails.cs │ │ │ │ │ │ ├── JobDelayDetails.json.cs │ │ │ │ │ │ ├── JobDeliveryInfo.PowerShell.cs │ │ │ │ │ │ ├── JobDeliveryInfo.TypeConverter.cs │ │ │ │ │ │ ├── JobDeliveryInfo.cs │ │ │ │ │ │ ├── JobDeliveryInfo.json.cs │ │ │ │ │ │ ├── JobDetails.PowerShell.cs │ │ │ │ │ │ ├── JobDetails.TypeConverter.cs │ │ │ │ │ │ ├── JobDetails.cs │ │ │ │ │ │ ├── JobDetails.json.cs │ │ │ │ │ │ ├── JobProperties.PowerShell.cs │ │ │ │ │ │ ├── JobProperties.TypeConverter.cs │ │ │ │ │ │ ├── JobProperties.cs │ │ │ │ │ │ ├── JobProperties.json.cs │ │ │ │ │ │ ├── JobResource.PowerShell.cs │ │ │ │ │ │ ├── JobResource.TypeConverter.cs │ │ │ │ │ │ ├── JobResource.cs │ │ │ │ │ │ ├── JobResource.json.cs │ │ │ │ │ │ ├── JobResourceList.PowerShell.cs │ │ │ │ │ │ ├── JobResourceList.TypeConverter.cs │ │ │ │ │ │ ├── JobResourceList.cs │ │ │ │ │ │ ├── JobResourceList.json.cs │ │ │ │ │ │ ├── JobResourceUpdateParameter.PowerShell.cs │ │ │ │ │ │ ├── JobResourceUpdateParameter.TypeConverter.cs │ │ │ │ │ │ ├── JobResourceUpdateParameter.cs │ │ │ │ │ │ ├── JobResourceUpdateParameter.json.cs │ │ │ │ │ │ ├── JobResourceUpdateParameterTags.PowerShell.cs │ │ │ │ │ │ ├── JobResourceUpdateParameterTags.TypeConverter.cs │ │ │ │ │ │ ├── JobResourceUpdateParameterTags.cs │ │ │ │ │ │ ├── JobResourceUpdateParameterTags.dictionary.cs │ │ │ │ │ │ ├── JobResourceUpdateParameterTags.json.cs │ │ │ │ │ │ ├── JobSecrets.PowerShell.cs │ │ │ │ │ │ ├── JobSecrets.TypeConverter.cs │ │ │ │ │ │ ├── JobSecrets.cs │ │ │ │ │ │ ├── JobSecrets.json.cs │ │ │ │ │ │ ├── JobStages.PowerShell.cs │ │ │ │ │ │ ├── JobStages.TypeConverter.cs │ │ │ │ │ │ ├── JobStages.cs │ │ │ │ │ │ ├── JobStages.json.cs │ │ │ │ │ │ ├── KeyEncryptionKey.PowerShell.cs │ │ │ │ │ │ ├── KeyEncryptionKey.TypeConverter.cs │ │ │ │ │ │ ├── KeyEncryptionKey.cs │ │ │ │ │ │ ├── KeyEncryptionKey.json.cs │ │ │ │ │ │ ├── LastMitigationActionOnJob.PowerShell.cs │ │ │ │ │ │ ├── LastMitigationActionOnJob.TypeConverter.cs │ │ │ │ │ │ ├── LastMitigationActionOnJob.cs │ │ │ │ │ │ ├── LastMitigationActionOnJob.json.cs │ │ │ │ │ │ ├── ManagedDiskDetails.PowerShell.cs │ │ │ │ │ │ ├── ManagedDiskDetails.TypeConverter.cs │ │ │ │ │ │ ├── ManagedDiskDetails.cs │ │ │ │ │ │ ├── ManagedDiskDetails.json.cs │ │ │ │ │ │ ├── MarkDevicesShippedRequest.PowerShell.cs │ │ │ │ │ │ ├── MarkDevicesShippedRequest.TypeConverter.cs │ │ │ │ │ │ ├── MarkDevicesShippedRequest.cs │ │ │ │ │ │ ├── MarkDevicesShippedRequest.json.cs │ │ │ │ │ │ ├── MitigateJobRequest.PowerShell.cs │ │ │ │ │ │ ├── MitigateJobRequest.TypeConverter.cs │ │ │ │ │ │ ├── MitigateJobRequest.cs │ │ │ │ │ │ ├── MitigateJobRequest.json.cs │ │ │ │ │ │ ├── MitigateJobRequestSerialNumberCustomerResolutionMap.PowerShell.cs │ │ │ │ │ │ ├── MitigateJobRequestSerialNumberCustomerResolutionMap.TypeConverter.cs │ │ │ │ │ │ ├── MitigateJobRequestSerialNumberCustomerResolutionMap.cs │ │ │ │ │ │ ├── MitigateJobRequestSerialNumberCustomerResolutionMap.dictionary.cs │ │ │ │ │ │ ├── MitigateJobRequestSerialNumberCustomerResolutionMap.json.cs │ │ │ │ │ │ ├── NotificationPreference.PowerShell.cs │ │ │ │ │ │ ├── NotificationPreference.TypeConverter.cs │ │ │ │ │ │ ├── NotificationPreference.cs │ │ │ │ │ │ ├── NotificationPreference.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationList.PowerShell.cs │ │ │ │ │ │ ├── OperationList.TypeConverter.cs │ │ │ │ │ │ ├── OperationList.cs │ │ │ │ │ │ ├── OperationList.json.cs │ │ │ │ │ │ ├── OperationProperties.PowerShell.cs │ │ │ │ │ │ ├── OperationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OperationProperties.cs │ │ │ │ │ │ ├── OperationProperties.json.cs │ │ │ │ │ │ ├── PackageCarrierDetails.PowerShell.cs │ │ │ │ │ │ ├── PackageCarrierDetails.TypeConverter.cs │ │ │ │ │ │ ├── PackageCarrierDetails.cs │ │ │ │ │ │ ├── PackageCarrierDetails.json.cs │ │ │ │ │ │ ├── PackageCarrierInfo.PowerShell.cs │ │ │ │ │ │ ├── PackageCarrierInfo.TypeConverter.cs │ │ │ │ │ │ ├── PackageCarrierInfo.cs │ │ │ │ │ │ ├── PackageCarrierInfo.json.cs │ │ │ │ │ │ ├── PackageShippingDetails.PowerShell.cs │ │ │ │ │ │ ├── PackageShippingDetails.TypeConverter.cs │ │ │ │ │ │ ├── PackageShippingDetails.cs │ │ │ │ │ │ ├── PackageShippingDetails.json.cs │ │ │ │ │ │ ├── Preferences.PowerShell.cs │ │ │ │ │ │ ├── Preferences.TypeConverter.cs │ │ │ │ │ │ ├── Preferences.cs │ │ │ │ │ │ ├── Preferences.json.cs │ │ │ │ │ │ ├── PreferencesValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── PreferencesValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── PreferencesValidationRequest.cs │ │ │ │ │ │ ├── PreferencesValidationRequest.json.cs │ │ │ │ │ │ ├── PreferencesValidationResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── PreferencesValidationResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── PreferencesValidationResponseProperties.cs │ │ │ │ │ │ ├── PreferencesValidationResponseProperties.json.cs │ │ │ │ │ │ ├── RegionConfigurationRequest.PowerShell.cs │ │ │ │ │ │ ├── RegionConfigurationRequest.TypeConverter.cs │ │ │ │ │ │ ├── RegionConfigurationRequest.cs │ │ │ │ │ │ ├── RegionConfigurationRequest.json.cs │ │ │ │ │ │ ├── RegionConfigurationResponse.PowerShell.cs │ │ │ │ │ │ ├── RegionConfigurationResponse.TypeConverter.cs │ │ │ │ │ │ ├── RegionConfigurationResponse.cs │ │ │ │ │ │ ├── RegionConfigurationResponse.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ResourceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ResourceIdentity.cs │ │ │ │ │ │ ├── ResourceIdentity.json.cs │ │ │ │ │ │ ├── ResourceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ResourceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ResourceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ResourceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ResourceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── ReverseShippingDetails.PowerShell.cs │ │ │ │ │ │ ├── ReverseShippingDetails.TypeConverter.cs │ │ │ │ │ │ ├── ReverseShippingDetails.cs │ │ │ │ │ │ ├── ReverseShippingDetails.json.cs │ │ │ │ │ │ ├── ScheduleAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── ScheduleAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── ScheduleAvailabilityRequest.cs │ │ │ │ │ │ ├── ScheduleAvailabilityRequest.json.cs │ │ │ │ │ │ ├── ScheduleAvailabilityResponse.PowerShell.cs │ │ │ │ │ │ ├── ScheduleAvailabilityResponse.TypeConverter.cs │ │ │ │ │ │ ├── ScheduleAvailabilityResponse.cs │ │ │ │ │ │ ├── ScheduleAvailabilityResponse.json.cs │ │ │ │ │ │ ├── ShareCredentialDetails.PowerShell.cs │ │ │ │ │ │ ├── ShareCredentialDetails.TypeConverter.cs │ │ │ │ │ │ ├── ShareCredentialDetails.cs │ │ │ │ │ │ ├── ShareCredentialDetails.json.cs │ │ │ │ │ │ ├── ShipmentPickUpRequest.PowerShell.cs │ │ │ │ │ │ ├── ShipmentPickUpRequest.TypeConverter.cs │ │ │ │ │ │ ├── ShipmentPickUpRequest.cs │ │ │ │ │ │ ├── ShipmentPickUpRequest.json.cs │ │ │ │ │ │ ├── ShipmentPickUpResponse.PowerShell.cs │ │ │ │ │ │ ├── ShipmentPickUpResponse.TypeConverter.cs │ │ │ │ │ │ ├── ShipmentPickUpResponse.cs │ │ │ │ │ │ ├── ShipmentPickUpResponse.json.cs │ │ │ │ │ │ ├── ShippingAddress.PowerShell.cs │ │ │ │ │ │ ├── ShippingAddress.TypeConverter.cs │ │ │ │ │ │ ├── ShippingAddress.cs │ │ │ │ │ │ ├── ShippingAddress.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationRequest.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationRequest.json.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationResponseProperties.cs │ │ │ │ │ │ ├── SkuAvailabilityValidationResponseProperties.json.cs │ │ │ │ │ │ ├── SkuCapacity.PowerShell.cs │ │ │ │ │ │ ├── SkuCapacity.TypeConverter.cs │ │ │ │ │ │ ├── SkuCapacity.cs │ │ │ │ │ │ ├── SkuCapacity.json.cs │ │ │ │ │ │ ├── SkuCost.PowerShell.cs │ │ │ │ │ │ ├── SkuCost.TypeConverter.cs │ │ │ │ │ │ ├── SkuCost.cs │ │ │ │ │ │ ├── SkuCost.json.cs │ │ │ │ │ │ ├── SkuInformation.PowerShell.cs │ │ │ │ │ │ ├── SkuInformation.TypeConverter.cs │ │ │ │ │ │ ├── SkuInformation.cs │ │ │ │ │ │ ├── SkuInformation.json.cs │ │ │ │ │ │ ├── SkuProperties.PowerShell.cs │ │ │ │ │ │ ├── SkuProperties.TypeConverter.cs │ │ │ │ │ │ ├── SkuProperties.cs │ │ │ │ │ │ ├── SkuProperties.json.cs │ │ │ │ │ │ ├── StorageAccountDetails.PowerShell.cs │ │ │ │ │ │ ├── StorageAccountDetails.TypeConverter.cs │ │ │ │ │ │ ├── StorageAccountDetails.cs │ │ │ │ │ │ ├── StorageAccountDetails.json.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationRequest.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationRequest.json.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationResponseProperties.cs │ │ │ │ │ │ ├── SubscriptionIsAllowedToCreateJobValidationResponseProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── TransferAllDetails.PowerShell.cs │ │ │ │ │ │ ├── TransferAllDetails.TypeConverter.cs │ │ │ │ │ │ ├── TransferAllDetails.cs │ │ │ │ │ │ ├── TransferAllDetails.json.cs │ │ │ │ │ │ ├── TransferConfiguration.PowerShell.cs │ │ │ │ │ │ ├── TransferConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── TransferConfiguration.cs │ │ │ │ │ │ ├── TransferConfiguration.json.cs │ │ │ │ │ │ ├── TransferConfigurationTransferAllDetails.PowerShell.cs │ │ │ │ │ │ ├── TransferConfigurationTransferAllDetails.TypeConverter.cs │ │ │ │ │ │ ├── TransferConfigurationTransferAllDetails.cs │ │ │ │ │ │ ├── TransferConfigurationTransferAllDetails.json.cs │ │ │ │ │ │ ├── TransferConfigurationTransferFilterDetails.PowerShell.cs │ │ │ │ │ │ ├── TransferConfigurationTransferFilterDetails.TypeConverter.cs │ │ │ │ │ │ ├── TransferConfigurationTransferFilterDetails.cs │ │ │ │ │ │ ├── TransferConfigurationTransferFilterDetails.json.cs │ │ │ │ │ │ ├── TransferFilterDetails.PowerShell.cs │ │ │ │ │ │ ├── TransferFilterDetails.TypeConverter.cs │ │ │ │ │ │ ├── TransferFilterDetails.cs │ │ │ │ │ │ ├── TransferFilterDetails.json.cs │ │ │ │ │ │ ├── TransportAvailabilityDetails.PowerShell.cs │ │ │ │ │ │ ├── TransportAvailabilityDetails.TypeConverter.cs │ │ │ │ │ │ ├── TransportAvailabilityDetails.cs │ │ │ │ │ │ ├── TransportAvailabilityDetails.json.cs │ │ │ │ │ │ ├── TransportAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── TransportAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── TransportAvailabilityRequest.cs │ │ │ │ │ │ ├── TransportAvailabilityRequest.json.cs │ │ │ │ │ │ ├── TransportAvailabilityResponse.PowerShell.cs │ │ │ │ │ │ ├── TransportAvailabilityResponse.TypeConverter.cs │ │ │ │ │ │ ├── TransportAvailabilityResponse.cs │ │ │ │ │ │ ├── TransportAvailabilityResponse.json.cs │ │ │ │ │ │ ├── TransportPreferences.PowerShell.cs │ │ │ │ │ │ ├── TransportPreferences.TypeConverter.cs │ │ │ │ │ │ ├── TransportPreferences.cs │ │ │ │ │ │ ├── TransportPreferences.json.cs │ │ │ │ │ │ ├── UnencryptedCredentials.PowerShell.cs │ │ │ │ │ │ ├── UnencryptedCredentials.TypeConverter.cs │ │ │ │ │ │ ├── UnencryptedCredentials.cs │ │ │ │ │ │ ├── UnencryptedCredentials.json.cs │ │ │ │ │ │ ├── UnencryptedCredentialsList.PowerShell.cs │ │ │ │ │ │ ├── UnencryptedCredentialsList.TypeConverter.cs │ │ │ │ │ │ ├── UnencryptedCredentialsList.cs │ │ │ │ │ │ ├── UnencryptedCredentialsList.json.cs │ │ │ │ │ │ ├── UpdateJobDetails.PowerShell.cs │ │ │ │ │ │ ├── UpdateJobDetails.TypeConverter.cs │ │ │ │ │ │ ├── UpdateJobDetails.cs │ │ │ │ │ │ ├── UpdateJobDetails.json.cs │ │ │ │ │ │ ├── UpdateJobProperties.PowerShell.cs │ │ │ │ │ │ ├── UpdateJobProperties.TypeConverter.cs │ │ │ │ │ │ ├── UpdateJobProperties.cs │ │ │ │ │ │ ├── UpdateJobProperties.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserAssignedProperties.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedProperties.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedProperties.cs │ │ │ │ │ │ ├── UserAssignedProperties.json.cs │ │ │ │ │ │ ├── ValidateAddress.PowerShell.cs │ │ │ │ │ │ ├── ValidateAddress.TypeConverter.cs │ │ │ │ │ │ ├── ValidateAddress.cs │ │ │ │ │ │ ├── ValidateAddress.json.cs │ │ │ │ │ │ ├── ValidationInputRequest.PowerShell.cs │ │ │ │ │ │ ├── ValidationInputRequest.TypeConverter.cs │ │ │ │ │ │ ├── ValidationInputRequest.cs │ │ │ │ │ │ ├── ValidationInputRequest.json.cs │ │ │ │ │ │ ├── ValidationInputResponse.PowerShell.cs │ │ │ │ │ │ ├── ValidationInputResponse.TypeConverter.cs │ │ │ │ │ │ ├── ValidationInputResponse.cs │ │ │ │ │ │ ├── ValidationInputResponse.json.cs │ │ │ │ │ │ ├── ValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── ValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── ValidationRequest.cs │ │ │ │ │ │ ├── ValidationRequest.json.cs │ │ │ │ │ │ ├── ValidationResponse.PowerShell.cs │ │ │ │ │ │ ├── ValidationResponse.TypeConverter.cs │ │ │ │ │ │ ├── ValidationResponse.cs │ │ │ │ │ │ ├── ValidationResponse.json.cs │ │ │ │ │ │ ├── ValidationResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── ValidationResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── ValidationResponseProperties.cs │ │ │ │ │ │ └── ValidationResponseProperties.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzDataBoxJobCredentials_List.cs │ │ │ │ │ ├── GetAzDataBoxJob_Get.cs │ │ │ │ │ ├── GetAzDataBoxJob_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataBoxJob_List.cs │ │ │ │ │ ├── GetAzDataBoxJob_List1.cs │ │ │ │ │ ├── GetAzDataBoxOperation_List.cs │ │ │ │ │ ├── GetAzDataBoxServiceAvailableSku_List.cs │ │ │ │ │ ├── GetAzDataBoxServiceAvailableSku_ListExpanded.cs │ │ │ │ │ ├── GetAzDataBoxServiceAvailableSku_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzDataBoxServiceAvailableSku_ListViaJsonString.cs │ │ │ │ │ ├── InvokeAzDataBoxBookJobShipmentPickUp_Book.cs │ │ │ │ │ ├── InvokeAzDataBoxBookJobShipmentPickUp_BookExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxBookJobShipmentPickUp_BookViaIdentity.cs │ │ │ │ │ ├── InvokeAzDataBoxBookJobShipmentPickUp_BookViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxBookJobShipmentPickUp_BookViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzDataBoxBookJobShipmentPickUp_BookViaJsonString.cs │ │ │ │ │ ├── InvokeAzDataBoxMarkJobDeviceShipped_Mark.cs │ │ │ │ │ ├── InvokeAzDataBoxMarkJobDeviceShipped_MarkExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxMarkJobDeviceShipped_MarkViaIdentity.cs │ │ │ │ │ ├── InvokeAzDataBoxMarkJobDeviceShipped_MarkViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxMarkJobDeviceShipped_MarkViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzDataBoxMarkJobDeviceShipped_MarkViaJsonString.cs │ │ │ │ │ ├── InvokeAzDataBoxMitigate_Mitigate.cs │ │ │ │ │ ├── InvokeAzDataBoxMitigate_MitigateExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxMitigate_MitigateViaIdentity.cs │ │ │ │ │ ├── InvokeAzDataBoxMitigate_MitigateViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxMitigate_MitigateViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzDataBoxMitigate_MitigateViaJsonString.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_Region.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_Region1.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionExpanded1.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaIdentity.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaIdentity1.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaIdentityExpanded1.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaJsonFilePath1.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaJsonString.cs │ │ │ │ │ ├── InvokeAzDataBoxRegionServiceConfiguration_RegionViaJsonString1.cs │ │ │ │ │ ├── NewAzDataBoxJob_CreateExpanded.cs │ │ │ │ │ ├── NewAzDataBoxJob_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDataBoxJob_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzDataBoxJob_Delete.cs │ │ │ │ │ ├── RemoveAzDataBoxJob_DeleteViaIdentity.cs │ │ │ │ │ ├── StopAzDataBoxJob_Cancel.cs │ │ │ │ │ ├── StopAzDataBoxJob_CancelExpanded.cs │ │ │ │ │ ├── StopAzDataBoxJob_CancelViaIdentity.cs │ │ │ │ │ ├── StopAzDataBoxJob_CancelViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzDataBoxJob_CancelViaJsonFilePath.cs │ │ │ │ │ ├── StopAzDataBoxJob_CancelViaJsonString.cs │ │ │ │ │ ├── TestAzDataBoxServiceAddress_Validate.cs │ │ │ │ │ ├── TestAzDataBoxServiceAddress_ValidateExpanded.cs │ │ │ │ │ ├── TestAzDataBoxServiceAddress_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzDataBoxServiceAddress_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDataBoxServiceAddress_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDataBoxServiceAddress_ValidateViaJsonString.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_Validate.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_Validate1.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateExpanded.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateExpanded1.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaIdentity1.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaIdentityExpanded1.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaJsonFilePath1.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaJsonString.cs │ │ │ │ │ ├── TestAzDataBoxServiceInput_ValidateViaJsonString1.cs │ │ │ │ │ ├── UpdateAzDataBoxJob_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDataBoxJob_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDataBoxJob_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzDataBoxJob_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.DataBox.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── DataProtection.Management.brown │ │ ├── AzureBackupJobResource.tsp │ │ ├── AzureBackupRecoveryPointResource.tsp │ │ ├── BackupInstanceResource.tsp │ │ ├── BackupVaultResource.tsp │ │ ├── BaseBackupPolicyResource.tsp │ │ ├── DeletedBackupInstanceResource.tsp │ │ ├── DppBaseResource.tsp │ │ ├── ResourceGuardProxyBaseResource.tsp │ │ ├── ResourceGuardResource.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── preview │ │ │ ├── 2021-02-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2021-06-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2021-10-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2021-12-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-02-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-03-31-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-09-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-10-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-11-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-04-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-06-01-preview │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-08-01-preview │ │ │ │ └── dataprotection.json │ │ │ └── 2024-02-01-preview │ │ │ │ └── dataprotection.json │ │ ├── readme.go.md │ │ ├── readme.java.md │ │ ├── readme.md │ │ ├── readme.nodejs.md │ │ ├── readme.python.md │ │ ├── readme.ruby.md │ │ ├── readme.typescript.md │ │ ├── routes.tsp │ │ ├── stable │ │ │ ├── 2021-01-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2021-07-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-01-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-03-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-04-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-05-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2022-12-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-01-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-05-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-11-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2023-12-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2024-03-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2024-04-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2025-01-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2025-02-01 │ │ │ │ └── dataprotection.json │ │ │ ├── 2025-07-01 │ │ │ │ └── dataprotection.json │ │ │ └── 2025-09-01 │ │ │ │ └── dataprotection.json │ │ ├── suppressions.yaml │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.DataProtection.csproj │ │ │ ├── Az.DataProtection.nuspec │ │ │ ├── Az.DataProtection.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.DataProtection.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── DataProtectionClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AbsoluteDeleteOption.PowerShell.cs │ │ │ │ │ │ ├── AbsoluteDeleteOption.TypeConverter.cs │ │ │ │ │ │ ├── AbsoluteDeleteOption.cs │ │ │ │ │ │ ├── AbsoluteDeleteOption.json.cs │ │ │ │ │ │ ├── AdHocBackupRuleOptions.PowerShell.cs │ │ │ │ │ │ ├── AdHocBackupRuleOptions.TypeConverter.cs │ │ │ │ │ │ ├── AdHocBackupRuleOptions.cs │ │ │ │ │ │ ├── AdHocBackupRuleOptions.json.cs │ │ │ │ │ │ ├── AdhocBackupTriggerOption.PowerShell.cs │ │ │ │ │ │ ├── AdhocBackupTriggerOption.TypeConverter.cs │ │ │ │ │ │ ├── AdhocBackupTriggerOption.cs │ │ │ │ │ │ ├── AdhocBackupTriggerOption.json.cs │ │ │ │ │ │ ├── AdhocBasedTaggingCriteria.PowerShell.cs │ │ │ │ │ │ ├── AdhocBasedTaggingCriteria.TypeConverter.cs │ │ │ │ │ │ ├── AdhocBasedTaggingCriteria.cs │ │ │ │ │ │ ├── AdhocBasedTaggingCriteria.json.cs │ │ │ │ │ │ ├── AdhocBasedTriggerContext.PowerShell.cs │ │ │ │ │ │ ├── AdhocBasedTriggerContext.TypeConverter.cs │ │ │ │ │ │ ├── AdhocBasedTriggerContext.cs │ │ │ │ │ │ ├── AdhocBasedTriggerContext.json.cs │ │ │ │ │ │ ├── AdlsBlobBackupDatasourceParameters.PowerShell.cs │ │ │ │ │ │ ├── AdlsBlobBackupDatasourceParameters.TypeConverter.cs │ │ │ │ │ │ ├── AdlsBlobBackupDatasourceParameters.cs │ │ │ │ │ │ ├── AdlsBlobBackupDatasourceParameters.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AuthCredentials.PowerShell.cs │ │ │ │ │ │ ├── AuthCredentials.TypeConverter.cs │ │ │ │ │ │ ├── AuthCredentials.cs │ │ │ │ │ │ ├── AuthCredentials.json.cs │ │ │ │ │ │ ├── AzureBackupDiscreteRecoveryPoint.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupDiscreteRecoveryPoint.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupDiscreteRecoveryPoint.cs │ │ │ │ │ │ ├── AzureBackupDiscreteRecoveryPoint.json.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesRequest.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesRequest.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesRequest.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesRequest.json.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponse.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponse.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponse.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponse.json.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponseResource.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponseResource.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponseResource.cs │ │ │ │ │ │ ├── AzureBackupFindRestorableTimeRangesResponseResource.json.cs │ │ │ │ │ │ ├── AzureBackupJob.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupJob.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupJob.cs │ │ │ │ │ │ ├── AzureBackupJob.json.cs │ │ │ │ │ │ ├── AzureBackupJobResource.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupJobResource.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupJobResource.cs │ │ │ │ │ │ ├── AzureBackupJobResource.json.cs │ │ │ │ │ │ ├── AzureBackupJobResourceList.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupJobResourceList.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupJobResourceList.cs │ │ │ │ │ │ ├── AzureBackupJobResourceList.json.cs │ │ │ │ │ │ ├── AzureBackupParams.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupParams.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupParams.cs │ │ │ │ │ │ ├── AzureBackupParams.json.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPoint.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPoint.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPoint.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPoint.json.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointBasedRestoreRequest.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointBasedRestoreRequest.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointBasedRestoreRequest.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointBasedRestoreRequest.json.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResource.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResource.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResource.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResource.json.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResourceList.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResourceList.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResourceList.cs │ │ │ │ │ │ ├── AzureBackupRecoveryPointResourceList.json.cs │ │ │ │ │ │ ├── AzureBackupRecoveryTimeBasedRestoreRequest.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRecoveryTimeBasedRestoreRequest.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRecoveryTimeBasedRestoreRequest.cs │ │ │ │ │ │ ├── AzureBackupRecoveryTimeBasedRestoreRequest.json.cs │ │ │ │ │ │ ├── AzureBackupRehydrationRequest.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRehydrationRequest.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRehydrationRequest.cs │ │ │ │ │ │ ├── AzureBackupRehydrationRequest.json.cs │ │ │ │ │ │ ├── AzureBackupRestoreRequest.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRestoreRequest.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRestoreRequest.cs │ │ │ │ │ │ ├── AzureBackupRestoreRequest.json.cs │ │ │ │ │ │ ├── AzureBackupRestoreWithRehydrationRequest.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRestoreWithRehydrationRequest.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRestoreWithRehydrationRequest.cs │ │ │ │ │ │ ├── AzureBackupRestoreWithRehydrationRequest.json.cs │ │ │ │ │ │ ├── AzureBackupRule.PowerShell.cs │ │ │ │ │ │ ├── AzureBackupRule.TypeConverter.cs │ │ │ │ │ │ ├── AzureBackupRule.cs │ │ │ │ │ │ ├── AzureBackupRule.json.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.PowerShell.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.TypeConverter.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.json.cs │ │ │ │ │ │ ├── AzureOperationalStoreParameters.PowerShell.cs │ │ │ │ │ │ ├── AzureOperationalStoreParameters.TypeConverter.cs │ │ │ │ │ │ ├── AzureOperationalStoreParameters.cs │ │ │ │ │ │ ├── AzureOperationalStoreParameters.json.cs │ │ │ │ │ │ ├── AzureRetentionRule.PowerShell.cs │ │ │ │ │ │ ├── AzureRetentionRule.TypeConverter.cs │ │ │ │ │ │ ├── AzureRetentionRule.cs │ │ │ │ │ │ ├── AzureRetentionRule.json.cs │ │ │ │ │ │ ├── BackupCriteria.PowerShell.cs │ │ │ │ │ │ ├── BackupCriteria.TypeConverter.cs │ │ │ │ │ │ ├── BackupCriteria.cs │ │ │ │ │ │ ├── BackupCriteria.json.cs │ │ │ │ │ │ ├── BackupDatasourceParameters.PowerShell.cs │ │ │ │ │ │ ├── BackupDatasourceParameters.TypeConverter.cs │ │ │ │ │ │ ├── BackupDatasourceParameters.cs │ │ │ │ │ │ ├── BackupDatasourceParameters.json.cs │ │ │ │ │ │ ├── BackupInstance.PowerShell.cs │ │ │ │ │ │ ├── BackupInstance.TypeConverter.cs │ │ │ │ │ │ ├── BackupInstance.cs │ │ │ │ │ │ ├── BackupInstance.json.cs │ │ │ │ │ │ ├── BackupInstanceResource.PowerShell.cs │ │ │ │ │ │ ├── BackupInstanceResource.TypeConverter.cs │ │ │ │ │ │ ├── BackupInstanceResource.cs │ │ │ │ │ │ ├── BackupInstanceResource.json.cs │ │ │ │ │ │ ├── BackupInstanceResourceList.PowerShell.cs │ │ │ │ │ │ ├── BackupInstanceResourceList.TypeConverter.cs │ │ │ │ │ │ ├── BackupInstanceResourceList.cs │ │ │ │ │ │ ├── BackupInstanceResourceList.json.cs │ │ │ │ │ │ ├── BackupInstanceResourceTags.PowerShell.cs │ │ │ │ │ │ ├── BackupInstanceResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── BackupInstanceResourceTags.cs │ │ │ │ │ │ ├── BackupInstanceResourceTags.dictionary.cs │ │ │ │ │ │ ├── BackupInstanceResourceTags.json.cs │ │ │ │ │ │ ├── BackupParameters.PowerShell.cs │ │ │ │ │ │ ├── BackupParameters.TypeConverter.cs │ │ │ │ │ │ ├── BackupParameters.cs │ │ │ │ │ │ ├── BackupParameters.json.cs │ │ │ │ │ │ ├── BackupPolicy.PowerShell.cs │ │ │ │ │ │ ├── BackupPolicy.TypeConverter.cs │ │ │ │ │ │ ├── BackupPolicy.cs │ │ │ │ │ │ ├── BackupPolicy.json.cs │ │ │ │ │ │ ├── BackupSchedule.PowerShell.cs │ │ │ │ │ │ ├── BackupSchedule.TypeConverter.cs │ │ │ │ │ │ ├── BackupSchedule.cs │ │ │ │ │ │ ├── BackupSchedule.json.cs │ │ │ │ │ │ ├── BackupVault.PowerShell.cs │ │ │ │ │ │ ├── BackupVault.TypeConverter.cs │ │ │ │ │ │ ├── BackupVault.cs │ │ │ │ │ │ ├── BackupVault.json.cs │ │ │ │ │ │ ├── BackupVaultResource.PowerShell.cs │ │ │ │ │ │ ├── BackupVaultResource.TypeConverter.cs │ │ │ │ │ │ ├── BackupVaultResource.cs │ │ │ │ │ │ ├── BackupVaultResource.json.cs │ │ │ │ │ │ ├── BackupVaultResourceList.PowerShell.cs │ │ │ │ │ │ ├── BackupVaultResourceList.TypeConverter.cs │ │ │ │ │ │ ├── BackupVaultResourceList.cs │ │ │ │ │ │ ├── BackupVaultResourceList.json.cs │ │ │ │ │ │ ├── BaseBackupPolicy.PowerShell.cs │ │ │ │ │ │ ├── BaseBackupPolicy.TypeConverter.cs │ │ │ │ │ │ ├── BaseBackupPolicy.cs │ │ │ │ │ │ ├── BaseBackupPolicy.json.cs │ │ │ │ │ │ ├── BaseBackupPolicyResource.PowerShell.cs │ │ │ │ │ │ ├── BaseBackupPolicyResource.TypeConverter.cs │ │ │ │ │ │ ├── BaseBackupPolicyResource.cs │ │ │ │ │ │ ├── BaseBackupPolicyResource.json.cs │ │ │ │ │ │ ├── BaseBackupPolicyResourceList.PowerShell.cs │ │ │ │ │ │ ├── BaseBackupPolicyResourceList.TypeConverter.cs │ │ │ │ │ │ ├── BaseBackupPolicyResourceList.cs │ │ │ │ │ │ ├── BaseBackupPolicyResourceList.json.cs │ │ │ │ │ │ ├── BasePolicyRule.PowerShell.cs │ │ │ │ │ │ ├── BasePolicyRule.TypeConverter.cs │ │ │ │ │ │ ├── BasePolicyRule.cs │ │ │ │ │ │ ├── BasePolicyRule.json.cs │ │ │ │ │ │ ├── BaseResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── BaseResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── BaseResourceProperties.cs │ │ │ │ │ │ ├── BaseResourceProperties.json.cs │ │ │ │ │ │ ├── BlobBackupDatasourceParameters.PowerShell.cs │ │ │ │ │ │ ├── BlobBackupDatasourceParameters.TypeConverter.cs │ │ │ │ │ │ ├── BlobBackupDatasourceParameters.cs │ │ │ │ │ │ ├── BlobBackupDatasourceParameters.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.json.cs │ │ │ │ │ │ ├── CloudError.PowerShell.cs │ │ │ │ │ │ ├── CloudError.TypeConverter.cs │ │ │ │ │ │ ├── CloudError.cs │ │ │ │ │ │ ├── CloudError.json.cs │ │ │ │ │ │ ├── CmkKekIdentity.PowerShell.cs │ │ │ │ │ │ ├── CmkKekIdentity.TypeConverter.cs │ │ │ │ │ │ ├── CmkKekIdentity.cs │ │ │ │ │ │ ├── CmkKekIdentity.json.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.json.cs │ │ │ │ │ │ ├── CopyOnExpiryOption.PowerShell.cs │ │ │ │ │ │ ├── CopyOnExpiryOption.TypeConverter.cs │ │ │ │ │ │ ├── CopyOnExpiryOption.cs │ │ │ │ │ │ ├── CopyOnExpiryOption.json.cs │ │ │ │ │ │ ├── CopyOption.PowerShell.cs │ │ │ │ │ │ ├── CopyOption.TypeConverter.cs │ │ │ │ │ │ ├── CopyOption.cs │ │ │ │ │ │ ├── CopyOption.json.cs │ │ │ │ │ │ ├── CrossRegionRestoreDetails.PowerShell.cs │ │ │ │ │ │ ├── CrossRegionRestoreDetails.TypeConverter.cs │ │ │ │ │ │ ├── CrossRegionRestoreDetails.cs │ │ │ │ │ │ ├── CrossRegionRestoreDetails.json.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobRequest.PowerShell.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobRequest.TypeConverter.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobRequest.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobRequest.json.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobsRequest.PowerShell.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobsRequest.TypeConverter.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobsRequest.cs │ │ │ │ │ │ ├── CrossRegionRestoreJobsRequest.json.cs │ │ │ │ │ │ ├── CrossRegionRestoreRequestObject.PowerShell.cs │ │ │ │ │ │ ├── CrossRegionRestoreRequestObject.TypeConverter.cs │ │ │ │ │ │ ├── CrossRegionRestoreRequestObject.cs │ │ │ │ │ │ ├── CrossRegionRestoreRequestObject.json.cs │ │ │ │ │ │ ├── CrossRegionRestoreSettings.PowerShell.cs │ │ │ │ │ │ ├── CrossRegionRestoreSettings.TypeConverter.cs │ │ │ │ │ │ ├── CrossRegionRestoreSettings.cs │ │ │ │ │ │ ├── CrossRegionRestoreSettings.json.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.PowerShell.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.TypeConverter.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.json.cs │ │ │ │ │ │ ├── CustomCopyOption.PowerShell.cs │ │ │ │ │ │ ├── CustomCopyOption.TypeConverter.cs │ │ │ │ │ │ ├── CustomCopyOption.cs │ │ │ │ │ │ ├── CustomCopyOption.json.cs │ │ │ │ │ │ ├── DataProtectionIdentity.PowerShell.cs │ │ │ │ │ │ ├── DataProtectionIdentity.TypeConverter.cs │ │ │ │ │ │ ├── DataProtectionIdentity.cs │ │ │ │ │ │ ├── DataProtectionIdentity.json.cs │ │ │ │ │ │ ├── DataStoreInfoBase.PowerShell.cs │ │ │ │ │ │ ├── DataStoreInfoBase.TypeConverter.cs │ │ │ │ │ │ ├── DataStoreInfoBase.cs │ │ │ │ │ │ ├── DataStoreInfoBase.json.cs │ │ │ │ │ │ ├── DataStoreParameters.PowerShell.cs │ │ │ │ │ │ ├── DataStoreParameters.TypeConverter.cs │ │ │ │ │ │ ├── DataStoreParameters.cs │ │ │ │ │ │ ├── DataStoreParameters.json.cs │ │ │ │ │ │ ├── Datasource.PowerShell.cs │ │ │ │ │ │ ├── Datasource.TypeConverter.cs │ │ │ │ │ │ ├── Datasource.cs │ │ │ │ │ │ ├── Datasource.json.cs │ │ │ │ │ │ ├── DatasourceSet.PowerShell.cs │ │ │ │ │ │ ├── DatasourceSet.TypeConverter.cs │ │ │ │ │ │ ├── DatasourceSet.cs │ │ │ │ │ │ ├── DatasourceSet.json.cs │ │ │ │ │ │ ├── Day.PowerShell.cs │ │ │ │ │ │ ├── Day.TypeConverter.cs │ │ │ │ │ │ ├── Day.cs │ │ │ │ │ │ ├── Day.json.cs │ │ │ │ │ │ ├── DefaultResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── DefaultResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── DefaultResourceProperties.cs │ │ │ │ │ │ ├── DefaultResourceProperties.json.cs │ │ │ │ │ │ ├── DeleteOption.PowerShell.cs │ │ │ │ │ │ ├── DeleteOption.TypeConverter.cs │ │ │ │ │ │ ├── DeleteOption.cs │ │ │ │ │ │ ├── DeleteOption.json.cs │ │ │ │ │ │ ├── DeletedBackupInstance.PowerShell.cs │ │ │ │ │ │ ├── DeletedBackupInstance.TypeConverter.cs │ │ │ │ │ │ ├── DeletedBackupInstance.cs │ │ │ │ │ │ ├── DeletedBackupInstance.json.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResource.PowerShell.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResource.TypeConverter.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResource.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResource.json.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResourceList.PowerShell.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResourceList.TypeConverter.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResourceList.cs │ │ │ │ │ │ ├── DeletedBackupInstanceResourceList.json.cs │ │ │ │ │ │ ├── DeletedBackupVault.PowerShell.cs │ │ │ │ │ │ ├── DeletedBackupVault.TypeConverter.cs │ │ │ │ │ │ ├── DeletedBackupVault.cs │ │ │ │ │ │ ├── DeletedBackupVault.json.cs │ │ │ │ │ │ ├── DeletedBackupVaultResource.PowerShell.cs │ │ │ │ │ │ ├── DeletedBackupVaultResource.TypeConverter.cs │ │ │ │ │ │ ├── DeletedBackupVaultResource.cs │ │ │ │ │ │ ├── DeletedBackupVaultResource.json.cs │ │ │ │ │ │ ├── DeletedBackupVaultResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── DeletedBackupVaultResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeletedBackupVaultResourceListResult.cs │ │ │ │ │ │ ├── DeletedBackupVaultResourceListResult.json.cs │ │ │ │ │ │ ├── DeletionInfo.PowerShell.cs │ │ │ │ │ │ ├── DeletionInfo.TypeConverter.cs │ │ │ │ │ │ ├── DeletionInfo.cs │ │ │ │ │ │ ├── DeletionInfo.json.cs │ │ │ │ │ │ ├── DppBaseResource.PowerShell.cs │ │ │ │ │ │ ├── DppBaseResource.TypeConverter.cs │ │ │ │ │ │ ├── DppBaseResource.cs │ │ │ │ │ │ ├── DppBaseResource.json.cs │ │ │ │ │ │ ├── DppBaseResourceList.PowerShell.cs │ │ │ │ │ │ ├── DppBaseResourceList.TypeConverter.cs │ │ │ │ │ │ ├── DppBaseResourceList.cs │ │ │ │ │ │ ├── DppBaseResourceList.json.cs │ │ │ │ │ │ ├── DppIdentityDetails.PowerShell.cs │ │ │ │ │ │ ├── DppIdentityDetails.TypeConverter.cs │ │ │ │ │ │ ├── DppIdentityDetails.cs │ │ │ │ │ │ ├── DppIdentityDetails.json.cs │ │ │ │ │ │ ├── DppIdentityDetailsUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── DppIdentityDetailsUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── DppIdentityDetailsUserAssignedIdentities.cs │ │ │ │ │ │ ├── DppIdentityDetailsUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── DppIdentityDetailsUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── DppResource.PowerShell.cs │ │ │ │ │ │ ├── DppResource.TypeConverter.cs │ │ │ │ │ │ ├── DppResource.cs │ │ │ │ │ │ ├── DppResource.json.cs │ │ │ │ │ │ ├── DppResourceList.PowerShell.cs │ │ │ │ │ │ ├── DppResourceList.TypeConverter.cs │ │ │ │ │ │ ├── DppResourceList.cs │ │ │ │ │ │ ├── DppResourceList.json.cs │ │ │ │ │ │ ├── DppTrackedResourceList.PowerShell.cs │ │ │ │ │ │ ├── DppTrackedResourceList.TypeConverter.cs │ │ │ │ │ │ ├── DppTrackedResourceList.cs │ │ │ │ │ │ ├── DppTrackedResourceList.json.cs │ │ │ │ │ │ ├── EncryptionSettings.PowerShell.cs │ │ │ │ │ │ ├── EncryptionSettings.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionSettings.cs │ │ │ │ │ │ ├── EncryptionSettings.json.cs │ │ │ │ │ │ ├── Error.PowerShell.cs │ │ │ │ │ │ ├── Error.TypeConverter.cs │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExportJobsResult.PowerShell.cs │ │ │ │ │ │ ├── ExportJobsResult.TypeConverter.cs │ │ │ │ │ │ ├── ExportJobsResult.cs │ │ │ │ │ │ ├── ExportJobsResult.json.cs │ │ │ │ │ │ ├── FeatureSettings.PowerShell.cs │ │ │ │ │ │ ├── FeatureSettings.TypeConverter.cs │ │ │ │ │ │ ├── FeatureSettings.cs │ │ │ │ │ │ ├── FeatureSettings.json.cs │ │ │ │ │ │ ├── FeatureValidationRequest.PowerShell.cs │ │ │ │ │ │ ├── FeatureValidationRequest.TypeConverter.cs │ │ │ │ │ │ ├── FeatureValidationRequest.cs │ │ │ │ │ │ ├── FeatureValidationRequest.json.cs │ │ │ │ │ │ ├── FeatureValidationRequestBase.PowerShell.cs │ │ │ │ │ │ ├── FeatureValidationRequestBase.TypeConverter.cs │ │ │ │ │ │ ├── FeatureValidationRequestBase.cs │ │ │ │ │ │ ├── FeatureValidationRequestBase.json.cs │ │ │ │ │ │ ├── FeatureValidationResponse.PowerShell.cs │ │ │ │ │ │ ├── FeatureValidationResponse.TypeConverter.cs │ │ │ │ │ │ ├── FeatureValidationResponse.cs │ │ │ │ │ │ ├── FeatureValidationResponse.json.cs │ │ │ │ │ │ ├── FeatureValidationResponseBase.PowerShell.cs │ │ │ │ │ │ ├── FeatureValidationResponseBase.TypeConverter.cs │ │ │ │ │ │ ├── FeatureValidationResponseBase.cs │ │ │ │ │ │ ├── FeatureValidationResponseBase.json.cs │ │ │ │ │ │ ├── FetchSecondaryRPsRequestParameters.PowerShell.cs │ │ │ │ │ │ ├── FetchSecondaryRPsRequestParameters.TypeConverter.cs │ │ │ │ │ │ ├── FetchSecondaryRPsRequestParameters.cs │ │ │ │ │ │ ├── FetchSecondaryRPsRequestParameters.json.cs │ │ │ │ │ │ ├── IdentityDetails.PowerShell.cs │ │ │ │ │ │ ├── IdentityDetails.TypeConverter.cs │ │ │ │ │ │ ├── IdentityDetails.cs │ │ │ │ │ │ ├── IdentityDetails.json.cs │ │ │ │ │ │ ├── ImmediateCopyOption.PowerShell.cs │ │ │ │ │ │ ├── ImmediateCopyOption.TypeConverter.cs │ │ │ │ │ │ ├── ImmediateCopyOption.cs │ │ │ │ │ │ ├── ImmediateCopyOption.json.cs │ │ │ │ │ │ ├── ImmutabilitySettings.PowerShell.cs │ │ │ │ │ │ ├── ImmutabilitySettings.TypeConverter.cs │ │ │ │ │ │ ├── ImmutabilitySettings.cs │ │ │ │ │ │ ├── ImmutabilitySettings.json.cs │ │ │ │ │ │ ├── InnerError.PowerShell.cs │ │ │ │ │ │ ├── InnerError.TypeConverter.cs │ │ │ │ │ │ ├── InnerError.cs │ │ │ │ │ │ ├── InnerError.json.cs │ │ │ │ │ │ ├── InnerErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── InnerErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── InnerErrorAdditionalInfo.cs │ │ │ │ │ │ ├── InnerErrorAdditionalInfo.dictionary.cs │ │ │ │ │ │ ├── InnerErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ItemLevelRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── ItemLevelRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── ItemLevelRestoreCriteria.cs │ │ │ │ │ │ ├── ItemLevelRestoreCriteria.json.cs │ │ │ │ │ │ ├── ItemLevelRestoreTargetInfo.PowerShell.cs │ │ │ │ │ │ ├── ItemLevelRestoreTargetInfo.TypeConverter.cs │ │ │ │ │ │ ├── ItemLevelRestoreTargetInfo.cs │ │ │ │ │ │ ├── ItemLevelRestoreTargetInfo.json.cs │ │ │ │ │ │ ├── ItemPathBasedRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── ItemPathBasedRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── ItemPathBasedRestoreCriteria.cs │ │ │ │ │ │ ├── ItemPathBasedRestoreCriteria.json.cs │ │ │ │ │ │ ├── JobExtendedInfo.PowerShell.cs │ │ │ │ │ │ ├── JobExtendedInfo.TypeConverter.cs │ │ │ │ │ │ ├── JobExtendedInfo.cs │ │ │ │ │ │ ├── JobExtendedInfo.json.cs │ │ │ │ │ │ ├── JobExtendedInfoAdditionalDetails.PowerShell.cs │ │ │ │ │ │ ├── JobExtendedInfoAdditionalDetails.TypeConverter.cs │ │ │ │ │ │ ├── JobExtendedInfoAdditionalDetails.cs │ │ │ │ │ │ ├── JobExtendedInfoAdditionalDetails.dictionary.cs │ │ │ │ │ │ ├── JobExtendedInfoAdditionalDetails.json.cs │ │ │ │ │ │ ├── JobSubTask.PowerShell.cs │ │ │ │ │ │ ├── JobSubTask.TypeConverter.cs │ │ │ │ │ │ ├── JobSubTask.cs │ │ │ │ │ │ ├── JobSubTask.json.cs │ │ │ │ │ │ ├── JobSubTaskAdditionalDetails.PowerShell.cs │ │ │ │ │ │ ├── JobSubTaskAdditionalDetails.TypeConverter.cs │ │ │ │ │ │ ├── JobSubTaskAdditionalDetails.cs │ │ │ │ │ │ ├── JobSubTaskAdditionalDetails.dictionary.cs │ │ │ │ │ │ ├── JobSubTaskAdditionalDetails.json.cs │ │ │ │ │ │ ├── KubernetesClusterBackupDatasourceParameters.PowerShell.cs │ │ │ │ │ │ ├── KubernetesClusterBackupDatasourceParameters.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesClusterBackupDatasourceParameters.cs │ │ │ │ │ │ ├── KubernetesClusterBackupDatasourceParameters.json.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteria.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteria.json.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteriaNamespaceMappings.PowerShell.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteriaNamespaceMappings.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteriaNamespaceMappings.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteriaNamespaceMappings.dictionary.cs │ │ │ │ │ │ ├── KubernetesClusterRestoreCriteriaNamespaceMappings.json.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteria.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteria.json.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteriaNamespaceMappings.PowerShell.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteriaNamespaceMappings.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteriaNamespaceMappings.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteriaNamespaceMappings.dictionary.cs │ │ │ │ │ │ ├── KubernetesClusterVaultTierRestoreCriteriaNamespaceMappings.json.cs │ │ │ │ │ │ ├── KubernetesPvRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── KubernetesPvRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesPvRestoreCriteria.cs │ │ │ │ │ │ ├── KubernetesPvRestoreCriteria.json.cs │ │ │ │ │ │ ├── KubernetesStorageClassRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── KubernetesStorageClassRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── KubernetesStorageClassRestoreCriteria.cs │ │ │ │ │ │ ├── KubernetesStorageClassRestoreCriteria.json.cs │ │ │ │ │ │ ├── MonitoringSettings.PowerShell.cs │ │ │ │ │ │ ├── MonitoringSettings.TypeConverter.cs │ │ │ │ │ │ ├── MonitoringSettings.cs │ │ │ │ │ │ ├── MonitoringSettings.json.cs │ │ │ │ │ │ ├── NamespacedNameResource.PowerShell.cs │ │ │ │ │ │ ├── NamespacedNameResource.TypeConverter.cs │ │ │ │ │ │ ├── NamespacedNameResource.cs │ │ │ │ │ │ ├── NamespacedNameResource.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationExtendedInfo.PowerShell.cs │ │ │ │ │ │ ├── OperationExtendedInfo.TypeConverter.cs │ │ │ │ │ │ ├── OperationExtendedInfo.cs │ │ │ │ │ │ ├── OperationExtendedInfo.json.cs │ │ │ │ │ │ ├── OperationJobExtendedInfo.PowerShell.cs │ │ │ │ │ │ ├── OperationJobExtendedInfo.TypeConverter.cs │ │ │ │ │ │ ├── OperationJobExtendedInfo.cs │ │ │ │ │ │ ├── OperationJobExtendedInfo.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationResource.PowerShell.cs │ │ │ │ │ │ ├── OperationResource.TypeConverter.cs │ │ │ │ │ │ ├── OperationResource.cs │ │ │ │ │ │ ├── OperationResource.json.cs │ │ │ │ │ │ ├── PatchBackupVaultInput.PowerShell.cs │ │ │ │ │ │ ├── PatchBackupVaultInput.TypeConverter.cs │ │ │ │ │ │ ├── PatchBackupVaultInput.cs │ │ │ │ │ │ ├── PatchBackupVaultInput.json.cs │ │ │ │ │ │ ├── PatchResourceGuardInput.PowerShell.cs │ │ │ │ │ │ ├── PatchResourceGuardInput.TypeConverter.cs │ │ │ │ │ │ ├── PatchResourceGuardInput.cs │ │ │ │ │ │ ├── PatchResourceGuardInput.json.cs │ │ │ │ │ │ ├── PatchResourceGuardInputTags.PowerShell.cs │ │ │ │ │ │ ├── PatchResourceGuardInputTags.TypeConverter.cs │ │ │ │ │ │ ├── PatchResourceGuardInputTags.cs │ │ │ │ │ │ ├── PatchResourceGuardInputTags.dictionary.cs │ │ │ │ │ │ ├── PatchResourceGuardInputTags.json.cs │ │ │ │ │ │ ├── PatchResourceRequestInput.PowerShell.cs │ │ │ │ │ │ ├── PatchResourceRequestInput.TypeConverter.cs │ │ │ │ │ │ ├── PatchResourceRequestInput.cs │ │ │ │ │ │ ├── PatchResourceRequestInput.json.cs │ │ │ │ │ │ ├── PatchResourceRequestInputTags.PowerShell.cs │ │ │ │ │ │ ├── PatchResourceRequestInputTags.TypeConverter.cs │ │ │ │ │ │ ├── PatchResourceRequestInputTags.cs │ │ │ │ │ │ ├── PatchResourceRequestInputTags.dictionary.cs │ │ │ │ │ │ ├── PatchResourceRequestInputTags.json.cs │ │ │ │ │ │ ├── PolicyInfo.PowerShell.cs │ │ │ │ │ │ ├── PolicyInfo.TypeConverter.cs │ │ │ │ │ │ ├── PolicyInfo.cs │ │ │ │ │ │ ├── PolicyInfo.json.cs │ │ │ │ │ │ ├── PolicyParameters.PowerShell.cs │ │ │ │ │ │ ├── PolicyParameters.TypeConverter.cs │ │ │ │ │ │ ├── PolicyParameters.cs │ │ │ │ │ │ ├── PolicyParameters.json.cs │ │ │ │ │ │ ├── ProtectionStatusDetails.PowerShell.cs │ │ │ │ │ │ ├── ProtectionStatusDetails.TypeConverter.cs │ │ │ │ │ │ ├── ProtectionStatusDetails.cs │ │ │ │ │ │ ├── ProtectionStatusDetails.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── RangeBasedItemLevelRestoreCriteria.PowerShell.cs │ │ │ │ │ │ ├── RangeBasedItemLevelRestoreCriteria.TypeConverter.cs │ │ │ │ │ │ ├── RangeBasedItemLevelRestoreCriteria.cs │ │ │ │ │ │ ├── RangeBasedItemLevelRestoreCriteria.json.cs │ │ │ │ │ │ ├── RecoveryPointDataStoreDetails.PowerShell.cs │ │ │ │ │ │ ├── RecoveryPointDataStoreDetails.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryPointDataStoreDetails.cs │ │ │ │ │ │ ├── RecoveryPointDataStoreDetails.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceDeletionInfo.PowerShell.cs │ │ │ │ │ │ ├── ResourceDeletionInfo.TypeConverter.cs │ │ │ │ │ │ ├── ResourceDeletionInfo.cs │ │ │ │ │ │ ├── ResourceDeletionInfo.json.cs │ │ │ │ │ │ ├── ResourceGuard.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuard.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuard.cs │ │ │ │ │ │ ├── ResourceGuard.json.cs │ │ │ │ │ │ ├── ResourceGuardOperation.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardOperation.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardOperation.cs │ │ │ │ │ │ ├── ResourceGuardOperation.json.cs │ │ │ │ │ │ ├── ResourceGuardOperationDetail.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardOperationDetail.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardOperationDetail.cs │ │ │ │ │ │ ├── ResourceGuardOperationDetail.json.cs │ │ │ │ │ │ ├── ResourceGuardProxyBase.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardProxyBase.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardProxyBase.cs │ │ │ │ │ │ ├── ResourceGuardProxyBase.json.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResource.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResource.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResource.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResource.json.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResourceList.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResourceList.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResourceList.cs │ │ │ │ │ │ ├── ResourceGuardProxyBaseResourceList.json.cs │ │ │ │ │ │ ├── ResourceGuardResource.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardResource.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardResource.cs │ │ │ │ │ │ ├── ResourceGuardResource.json.cs │ │ │ │ │ │ ├── ResourceGuardResourceList.PowerShell.cs │ │ │ │ │ │ ├── ResourceGuardResourceList.TypeConverter.cs │ │ │ │ │ │ ├── ResourceGuardResourceList.cs │ │ │ │ │ │ ├── ResourceGuardResourceList.json.cs │ │ │ │ │ │ ├── ResourceMoveDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceMoveDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceMoveDetails.cs │ │ │ │ │ │ ├── ResourceMoveDetails.json.cs │ │ │ │ │ │ ├── RestorableTimeRange.PowerShell.cs │ │ │ │ │ │ ├── RestorableTimeRange.TypeConverter.cs │ │ │ │ │ │ ├── RestorableTimeRange.cs │ │ │ │ │ │ ├── RestorableTimeRange.json.cs │ │ │ │ │ │ ├── RestoreFilesTargetInfo.PowerShell.cs │ │ │ │ │ │ ├── RestoreFilesTargetInfo.TypeConverter.cs │ │ │ │ │ │ ├── RestoreFilesTargetInfo.cs │ │ │ │ │ │ ├── RestoreFilesTargetInfo.json.cs │ │ │ │ │ │ ├── RestoreJobRecoveryPointDetails.PowerShell.cs │ │ │ │ │ │ ├── RestoreJobRecoveryPointDetails.TypeConverter.cs │ │ │ │ │ │ ├── RestoreJobRecoveryPointDetails.cs │ │ │ │ │ │ ├── RestoreJobRecoveryPointDetails.json.cs │ │ │ │ │ │ ├── RestoreTargetInfo.PowerShell.cs │ │ │ │ │ │ ├── RestoreTargetInfo.TypeConverter.cs │ │ │ │ │ │ ├── RestoreTargetInfo.cs │ │ │ │ │ │ ├── RestoreTargetInfo.json.cs │ │ │ │ │ │ ├── RestoreTargetInfoBase.PowerShell.cs │ │ │ │ │ │ ├── RestoreTargetInfoBase.TypeConverter.cs │ │ │ │ │ │ ├── RestoreTargetInfoBase.cs │ │ │ │ │ │ ├── RestoreTargetInfoBase.json.cs │ │ │ │ │ │ ├── RetentionTag.PowerShell.cs │ │ │ │ │ │ ├── RetentionTag.TypeConverter.cs │ │ │ │ │ │ ├── RetentionTag.cs │ │ │ │ │ │ ├── RetentionTag.json.cs │ │ │ │ │ │ ├── ScheduleBasedBackupCriteria.PowerShell.cs │ │ │ │ │ │ ├── ScheduleBasedBackupCriteria.TypeConverter.cs │ │ │ │ │ │ ├── ScheduleBasedBackupCriteria.cs │ │ │ │ │ │ ├── ScheduleBasedBackupCriteria.json.cs │ │ │ │ │ │ ├── ScheduleBasedTriggerContext.PowerShell.cs │ │ │ │ │ │ ├── ScheduleBasedTriggerContext.TypeConverter.cs │ │ │ │ │ │ ├── ScheduleBasedTriggerContext.cs │ │ │ │ │ │ ├── ScheduleBasedTriggerContext.json.cs │ │ │ │ │ │ ├── SecretStoreBasedAuthCredentials.PowerShell.cs │ │ │ │ │ │ ├── SecretStoreBasedAuthCredentials.TypeConverter.cs │ │ │ │ │ │ ├── SecretStoreBasedAuthCredentials.cs │ │ │ │ │ │ ├── SecretStoreBasedAuthCredentials.json.cs │ │ │ │ │ │ ├── SecretStoreResource.PowerShell.cs │ │ │ │ │ │ ├── SecretStoreResource.TypeConverter.cs │ │ │ │ │ │ ├── SecretStoreResource.cs │ │ │ │ │ │ ├── SecretStoreResource.json.cs │ │ │ │ │ │ ├── SecuritySettings.PowerShell.cs │ │ │ │ │ │ ├── SecuritySettings.TypeConverter.cs │ │ │ │ │ │ ├── SecuritySettings.cs │ │ │ │ │ │ ├── SecuritySettings.json.cs │ │ │ │ │ │ ├── SoftDeleteSettings.PowerShell.cs │ │ │ │ │ │ ├── SoftDeleteSettings.TypeConverter.cs │ │ │ │ │ │ ├── SoftDeleteSettings.cs │ │ │ │ │ │ ├── SoftDeleteSettings.json.cs │ │ │ │ │ │ ├── SourceLifeCycle.PowerShell.cs │ │ │ │ │ │ ├── SourceLifeCycle.TypeConverter.cs │ │ │ │ │ │ ├── SourceLifeCycle.cs │ │ │ │ │ │ ├── SourceLifeCycle.json.cs │ │ │ │ │ │ ├── StopProtectionRequest.PowerShell.cs │ │ │ │ │ │ ├── StopProtectionRequest.TypeConverter.cs │ │ │ │ │ │ ├── StopProtectionRequest.cs │ │ │ │ │ │ ├── StopProtectionRequest.json.cs │ │ │ │ │ │ ├── StorageSetting.PowerShell.cs │ │ │ │ │ │ ├── StorageSetting.TypeConverter.cs │ │ │ │ │ │ ├── StorageSetting.cs │ │ │ │ │ │ ├── StorageSetting.json.cs │ │ │ │ │ │ ├── SupportedFeature.PowerShell.cs │ │ │ │ │ │ ├── SupportedFeature.TypeConverter.cs │ │ │ │ │ │ ├── SupportedFeature.cs │ │ │ │ │ │ ├── SupportedFeature.json.cs │ │ │ │ │ │ ├── SuspendBackupRequest.PowerShell.cs │ │ │ │ │ │ ├── SuspendBackupRequest.TypeConverter.cs │ │ │ │ │ │ ├── SuspendBackupRequest.cs │ │ │ │ │ │ ├── SuspendBackupRequest.json.cs │ │ │ │ │ │ ├── SyncBackupInstanceRequest.PowerShell.cs │ │ │ │ │ │ ├── SyncBackupInstanceRequest.TypeConverter.cs │ │ │ │ │ │ ├── SyncBackupInstanceRequest.cs │ │ │ │ │ │ ├── SyncBackupInstanceRequest.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TaggingCriteria.PowerShell.cs │ │ │ │ │ │ ├── TaggingCriteria.TypeConverter.cs │ │ │ │ │ │ ├── TaggingCriteria.cs │ │ │ │ │ │ ├── TaggingCriteria.json.cs │ │ │ │ │ │ ├── TargetCopySetting.PowerShell.cs │ │ │ │ │ │ ├── TargetCopySetting.TypeConverter.cs │ │ │ │ │ │ ├── TargetCopySetting.cs │ │ │ │ │ │ ├── TargetCopySetting.json.cs │ │ │ │ │ │ ├── TargetDetails.PowerShell.cs │ │ │ │ │ │ ├── TargetDetails.TypeConverter.cs │ │ │ │ │ │ ├── TargetDetails.cs │ │ │ │ │ │ ├── TargetDetails.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── TriggerBackupRequest.PowerShell.cs │ │ │ │ │ │ ├── TriggerBackupRequest.TypeConverter.cs │ │ │ │ │ │ ├── TriggerBackupRequest.cs │ │ │ │ │ │ ├── TriggerBackupRequest.json.cs │ │ │ │ │ │ ├── TriggerContext.PowerShell.cs │ │ │ │ │ │ ├── TriggerContext.TypeConverter.cs │ │ │ │ │ │ ├── TriggerContext.cs │ │ │ │ │ │ ├── TriggerContext.json.cs │ │ │ │ │ │ ├── UnlockDeleteRequest.PowerShell.cs │ │ │ │ │ │ ├── UnlockDeleteRequest.TypeConverter.cs │ │ │ │ │ │ ├── UnlockDeleteRequest.cs │ │ │ │ │ │ ├── UnlockDeleteRequest.json.cs │ │ │ │ │ │ ├── UnlockDeleteResponse.PowerShell.cs │ │ │ │ │ │ ├── UnlockDeleteResponse.TypeConverter.cs │ │ │ │ │ │ ├── UnlockDeleteResponse.cs │ │ │ │ │ │ ├── UnlockDeleteResponse.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserFacingError.PowerShell.cs │ │ │ │ │ │ ├── UserFacingError.TypeConverter.cs │ │ │ │ │ │ ├── UserFacingError.cs │ │ │ │ │ │ ├── UserFacingError.json.cs │ │ │ │ │ │ ├── UserFacingErrorProperties.PowerShell.cs │ │ │ │ │ │ ├── UserFacingErrorProperties.TypeConverter.cs │ │ │ │ │ │ ├── UserFacingErrorProperties.cs │ │ │ │ │ │ ├── UserFacingErrorProperties.dictionary.cs │ │ │ │ │ │ ├── UserFacingErrorProperties.json.cs │ │ │ │ │ │ ├── UserFacingWarningDetail.PowerShell.cs │ │ │ │ │ │ ├── UserFacingWarningDetail.TypeConverter.cs │ │ │ │ │ │ ├── UserFacingWarningDetail.cs │ │ │ │ │ │ ├── UserFacingWarningDetail.json.cs │ │ │ │ │ │ ├── ValidateCrossRegionRestoreRequestObject.PowerShell.cs │ │ │ │ │ │ ├── ValidateCrossRegionRestoreRequestObject.TypeConverter.cs │ │ │ │ │ │ ├── ValidateCrossRegionRestoreRequestObject.cs │ │ │ │ │ │ ├── ValidateCrossRegionRestoreRequestObject.json.cs │ │ │ │ │ │ ├── ValidateForBackupRequest.PowerShell.cs │ │ │ │ │ │ ├── ValidateForBackupRequest.TypeConverter.cs │ │ │ │ │ │ ├── ValidateForBackupRequest.cs │ │ │ │ │ │ ├── ValidateForBackupRequest.json.cs │ │ │ │ │ │ ├── ValidateForModifyBackupRequest.PowerShell.cs │ │ │ │ │ │ ├── ValidateForModifyBackupRequest.TypeConverter.cs │ │ │ │ │ │ ├── ValidateForModifyBackupRequest.cs │ │ │ │ │ │ ├── ValidateForModifyBackupRequest.json.cs │ │ │ │ │ │ ├── ValidateRestoreRequestObject.PowerShell.cs │ │ │ │ │ │ ├── ValidateRestoreRequestObject.TypeConverter.cs │ │ │ │ │ │ ├── ValidateRestoreRequestObject.cs │ │ │ │ │ │ └── ValidateRestoreRequestObject.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_Backup.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupExpanded.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupViaIdentity.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupViaIdentityBackupVault.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupViaIdentityExpanded.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupViaJsonFilePath.cs │ │ │ │ │ ├── BackupAzDataProtectionBackupInstanceAdhoc_BackupViaJsonString.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_Find.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindExpanded.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindViaIdentity.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindViaIdentityBackupVault.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindViaIdentityExpanded.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindViaJsonFilePath.cs │ │ │ │ │ ├── FindAzDataProtectionRestorableTimeRange_FindViaJsonString.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstanceOperationResult_Get.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstanceOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstanceOperationResult_GetViaIdentityBackupInstance.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstanceOperationResult_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstance_Get.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstance_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstance_List.cs │ │ │ │ │ ├── GetAzDataProtectionBackupInstancesExtensionRouting_List.cs │ │ │ │ │ ├── GetAzDataProtectionBackupPolicy_Get.cs │ │ │ │ │ ├── GetAzDataProtectionBackupPolicy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionBackupPolicy_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionBackupPolicy_List.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVaultOperationResult_Get.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVaultOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVaultOperationResult_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVault_Get.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVault_Get1.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVault_Get2.cs │ │ │ │ │ ├── GetAzDataProtectionBackupVault_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupInstance_Get.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupInstance_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupInstance_List.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupVault_Get.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupVault_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupVault_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzDataProtectionDeletedBackupVault_List.cs │ │ │ │ │ ├── GetAzDataProtectionDppResourceGuardProxy_Get.cs │ │ │ │ │ ├── GetAzDataProtectionDppResourceGuardProxy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionDppResourceGuardProxy_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionDppResourceGuardProxy_List.cs │ │ │ │ │ ├── GetAzDataProtectionExportJobsOperationResult_Get.cs │ │ │ │ │ ├── GetAzDataProtectionExportJobsOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionExportJobsOperationResult_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_Get.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_GetExpanded.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_GetViaIdentityExpanded.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_GetViaJsonString.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_List.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_ListExpanded.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzDataProtectionFetchCrossRegionRestoreJob_ListViaJsonString.cs │ │ │ │ │ ├── GetAzDataProtectionFetchSecondaryRecoveryPoint_List.cs │ │ │ │ │ ├── GetAzDataProtectionFetchSecondaryRecoveryPoint_ListExpanded.cs │ │ │ │ │ ├── GetAzDataProtectionFetchSecondaryRecoveryPoint_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzDataProtectionFetchSecondaryRecoveryPoint_ListViaJsonString.cs │ │ │ │ │ ├── GetAzDataProtectionJob_Get.cs │ │ │ │ │ ├── GetAzDataProtectionJob_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionJob_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionJob_List.cs │ │ │ │ │ ├── GetAzDataProtectionOperationResult_Get.cs │ │ │ │ │ ├── GetAzDataProtectionOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionOperationResult_GetViaIdentityOperationResult.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatusBackupVaultContext_Get.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatusBackupVaultContext_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatusBackupVaultContext_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatusResourceGroupContext_Get.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatusResourceGroupContext_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatus_Get.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionOperationStatus_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzDataProtectionOperation_List.cs │ │ │ │ │ ├── GetAzDataProtectionRecoveryPoint_Get.cs │ │ │ │ │ ├── GetAzDataProtectionRecoveryPoint_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionRecoveryPoint_GetViaIdentityBackupInstance.cs │ │ │ │ │ ├── GetAzDataProtectionRecoveryPoint_GetViaIdentityBackupVault.cs │ │ │ │ │ ├── GetAzDataProtectionRecoveryPoint_List.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardBackupSecurityPinRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardBackupSecurityPinRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultBackupSecurityPinRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultBackupSecurityPinRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultBackupSecurityPinRequestObject_GetViaIdentityResourceGuard.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDeleteProtectedItemRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDeleteProtectedItemRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDeleteProtectedItemRequestObject_GetViaIdentityResourceGuard.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDeleteResourceGuardProxyRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDeleteResourceGuardProxyRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDeleteResourceGuardProxyRequestObject_GetViaIdentityResourceGuard.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDisableSoftDeleteRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDisableSoftDeleteRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultDisableSoftDeleteRequestObject_GetViaIdentityResourceGuard.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultUpdateProtectedItemRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultUpdateProtectedItemRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultUpdateProtectedItemRequestObject_GetViaIdentityResourceGuard.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultUpdateProtectionPolicyRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultUpdateProtectionPolicyRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDefaultUpdateProtectionPolicyRequestObject_GetViaIdentityResourceGuard.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDeleteProtectedItemRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDeleteProtectedItemRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDeleteResourceGuardProxyRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDeleteResourceGuardProxyRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDisableSoftDeleteRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardDisableSoftDeleteRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardResource_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardResource_Get1.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardUpdateProtectedItemRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardUpdateProtectedItemRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardUpdateProtectionPolicyRequestObject_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuardUpdateProtectionPolicyRequestObject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuard_Get.cs │ │ │ │ │ ├── GetAzDataProtectionResourceGuard_GetViaIdentity.cs │ │ │ │ │ ├── NewAzDataProtectionBackupInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzDataProtectionBackupInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDataProtectionBackupInstance_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDataProtectionBackupPolicy_CreateExpanded.cs │ │ │ │ │ ├── NewAzDataProtectionBackupPolicy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDataProtectionBackupPolicy_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDataProtectionBackupVault_CreateExpanded.cs │ │ │ │ │ ├── NewAzDataProtectionBackupVault_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDataProtectionBackupVault_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDataProtectionDppResourceGuardProxy_CreateExpanded.cs │ │ │ │ │ ├── NewAzDataProtectionDppResourceGuardProxy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDataProtectionDppResourceGuardProxy_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupInstance_Delete.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupInstance_DeleteViaIdentityBackupVault.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupPolicy_Delete.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupPolicy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupPolicy_DeleteViaIdentityBackupVault.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupVault_Delete.cs │ │ │ │ │ ├── RemoveAzDataProtectionBackupVault_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDataProtectionDppResourceGuardProxy_Delete.cs │ │ │ │ │ ├── RemoveAzDataProtectionDppResourceGuardProxy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDataProtectionDppResourceGuardProxy_DeleteViaIdentityBackupVault.cs │ │ │ │ │ ├── RemoveAzDataProtectionResourceGuard_Delete.cs │ │ │ │ │ ├── RemoveAzDataProtectionResourceGuard_DeleteViaIdentity.cs │ │ │ │ │ ├── RestoreAzDataProtectionDeletedBackupInstance_Undelete.cs │ │ │ │ │ ├── RestoreAzDataProtectionDeletedBackupInstance_UndeleteViaIdentity.cs │ │ │ │ │ ├── RestoreAzDataProtectionDeletedBackupInstance_UndeleteViaIdentityBackupVault.cs │ │ │ │ │ ├── ResumeAzDataProtectionBackupInstanceBackup_Resume.cs │ │ │ │ │ ├── ResumeAzDataProtectionBackupInstanceBackup_ResumeViaIdentity.cs │ │ │ │ │ ├── ResumeAzDataProtectionBackupInstanceBackup_ResumeViaIdentityBackupVault.cs │ │ │ │ │ ├── ResumeAzDataProtectionBackupInstanceProtection_Resume.cs │ │ │ │ │ ├── ResumeAzDataProtectionBackupInstanceProtection_ResumeViaIdentity.cs │ │ │ │ │ ├── ResumeAzDataProtectionBackupInstanceProtection_ResumeViaIdentityBackupVault.cs │ │ │ │ │ ├── SetAzDataProtectionBackupInstance_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDataProtectionBackupInstance_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDataProtectionBackupInstance_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzDataProtectionBackupPolicy_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDataProtectionBackupPolicy_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDataProtectionBackupPolicy_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzDataProtectionBackupVault_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDataProtectionBackupVault_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDataProtectionBackupVault_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzDataProtectionDppResourceGuardProxy_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDataProtectionDppResourceGuardProxy_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDataProtectionDppResourceGuardProxy_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzDataProtectionResourceGuard_Put.cs │ │ │ │ │ ├── SetAzDataProtectionResourceGuard_PutExpanded.cs │ │ │ │ │ ├── SetAzDataProtectionResourceGuard_PutViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDataProtectionResourceGuard_PutViaJsonString.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceCrossRegionRestore_Trigger.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceCrossRegionRestore_TriggerExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceCrossRegionRestore_TriggerViaIdentity.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceCrossRegionRestore_TriggerViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceCrossRegionRestore_TriggerViaJsonFilePath.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceCrossRegionRestore_TriggerViaJsonString.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_Trigger.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerViaIdentity.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerViaIdentityBackupVault.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerViaJsonFilePath.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRehydrate_TriggerViaJsonString.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_Trigger.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerViaIdentity.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerViaIdentityBackupVault.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerViaJsonFilePath.cs │ │ │ │ │ ├── StartAzDataProtectionBackupInstanceRestore_TriggerViaJsonString.cs │ │ │ │ │ ├── StartAzDataProtectionExportJob_Trigger.cs │ │ │ │ │ ├── StartAzDataProtectionExportJob_TriggerViaIdentity.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_Stop.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopExpanded.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopViaIdentity.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopViaIdentityBackupVault.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzDataProtectionBackupInstanceProtection_StopViaJsonString.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_Suspend.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendExpanded.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendViaIdentity.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendViaIdentityBackupVault.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendViaIdentityExpanded.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendViaJsonFilePath.cs │ │ │ │ │ ├── SuspendAzDataProtectionBackupInstanceBackup_SuspendViaJsonString.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_Sync.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncExpanded.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncViaIdentity.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncViaIdentityBackupVault.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncViaIdentityExpanded.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncViaJsonFilePath.cs │ │ │ │ │ ├── SyncAzDataProtectionBackupInstance_SyncViaJsonString.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstanceCrossRegionRestore_Validate.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstanceCrossRegionRestore_ValidateExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstanceCrossRegionRestore_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstanceCrossRegionRestore_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstanceCrossRegionRestore_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstanceCrossRegionRestore_ValidateViaJsonString.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_Validate.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_Validate1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_Validate2.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateExpanded1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateExpanded2.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentity1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentity2.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityBackupVault.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityBackupVault1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityBackupVaultExpanded1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityExpanded1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaIdentityExpanded2.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaJsonFilePath1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaJsonFilePath2.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaJsonString.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaJsonString1.cs │ │ │ │ │ ├── TestAzDataProtectionBackupInstance_ValidateViaJsonString2.cs │ │ │ │ │ ├── TestAzDataProtectionBackupVaultNameAvailability_Check.cs │ │ │ │ │ ├── TestAzDataProtectionBackupVaultNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupVaultNameAvailability_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzDataProtectionBackupVaultNameAvailability_CheckViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionBackupVaultNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDataProtectionBackupVaultNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── TestAzDataProtectionFeatureSupport_Check.cs │ │ │ │ │ ├── TestAzDataProtectionFeatureSupport_CheckExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionFeatureSupport_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzDataProtectionFeatureSupport_CheckViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDataProtectionFeatureSupport_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDataProtectionFeatureSupport_CheckViaJsonString.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_Unlock.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockExpanded.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockViaIdentity.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockViaIdentityBackupVault.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockViaIdentityExpanded.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockViaJsonFilePath.cs │ │ │ │ │ ├── UnlockAzDataProtectionDppResourceGuardProxyDelete_UnlockViaJsonString.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupInstance_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupInstance_UpdateViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupInstance_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupPolicy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupPolicy_UpdateViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupPolicy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupVault_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionBackupVault_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionDppResourceGuardProxy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionDppResourceGuardProxy_UpdateViaIdentityBackupVaultExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionDppResourceGuardProxy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionResourceGuard_Patch.cs │ │ │ │ │ ├── UpdateAzDataProtectionResourceGuard_PatchExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionResourceGuard_PatchViaIdentity.cs │ │ │ │ │ ├── UpdateAzDataProtectionResourceGuard_PatchViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDataProtectionResourceGuard_PatchViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzDataProtectionResourceGuard_PatchViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.DataProtection.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── DataReplication.Management.brown │ │ ├── EmailConfigurationModel.tsp │ │ ├── EventModel.tsp │ │ ├── FabricAgentModel.tsp │ │ ├── FabricModel.tsp │ │ ├── JobModel.tsp │ │ ├── PolicyModel.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── PrivateEndpointConnectionProxy.tsp │ │ ├── PrivateLinkResource.tsp │ │ ├── ProtectedItemModel.tsp │ │ ├── RecoveryPointModel.tsp │ │ ├── ReplicationExtensionModel.tsp │ │ ├── VaultModel.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.RecoveryServicesDataReplication.csproj │ │ │ ├── Az.RecoveryServicesDataReplication.nuspec │ │ │ ├── Az.RecoveryServicesDataReplication.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.RecoveryServicesDataReplication.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── AzureSiteRecoveryManagementServiceApi.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AffectedObjectDetails.PowerShell.cs │ │ │ │ │ │ ├── AffectedObjectDetails.TypeConverter.cs │ │ │ │ │ │ ├── AffectedObjectDetails.cs │ │ │ │ │ │ ├── AffectedObjectDetails.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AzStackHciClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── AzStackHciClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzStackHciClusterProperties.cs │ │ │ │ │ │ ├── AzStackHciClusterProperties.json.cs │ │ │ │ │ │ ├── AzStackHciFabricModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── AzStackHciFabricModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzStackHciFabricModelCustomProperties.cs │ │ │ │ │ │ ├── AzStackHciFabricModelCustomProperties.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityModel.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityModel.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityModel.cs │ │ │ │ │ │ ├── CheckNameAvailabilityModel.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponseModel.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponseModel.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponseModel.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponseModel.json.cs │ │ │ │ │ │ ├── ConnectionDetails.PowerShell.cs │ │ │ │ │ │ ├── ConnectionDetails.TypeConverter.cs │ │ │ │ │ │ ├── ConnectionDetails.cs │ │ │ │ │ │ ├── ConnectionDetails.json.cs │ │ │ │ │ │ ├── DeploymentPreflightModel.PowerShell.cs │ │ │ │ │ │ ├── DeploymentPreflightModel.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentPreflightModel.cs │ │ │ │ │ │ ├── DeploymentPreflightModel.json.cs │ │ │ │ │ │ ├── DeploymentPreflightResource.PowerShell.cs │ │ │ │ │ │ ├── DeploymentPreflightResource.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentPreflightResource.cs │ │ │ │ │ │ ├── DeploymentPreflightResource.json.cs │ │ │ │ │ │ ├── DiskControllerInputs.PowerShell.cs │ │ │ │ │ │ ├── DiskControllerInputs.TypeConverter.cs │ │ │ │ │ │ ├── DiskControllerInputs.cs │ │ │ │ │ │ ├── DiskControllerInputs.json.cs │ │ │ │ │ │ ├── EmailConfigurationModel.PowerShell.cs │ │ │ │ │ │ ├── EmailConfigurationModel.TypeConverter.cs │ │ │ │ │ │ ├── EmailConfigurationModel.cs │ │ │ │ │ │ ├── EmailConfigurationModel.json.cs │ │ │ │ │ │ ├── EmailConfigurationModelListResult.PowerShell.cs │ │ │ │ │ │ ├── EmailConfigurationModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── EmailConfigurationModelListResult.cs │ │ │ │ │ │ ├── EmailConfigurationModelListResult.json.cs │ │ │ │ │ │ ├── EmailConfigurationModelProperties.PowerShell.cs │ │ │ │ │ │ ├── EmailConfigurationModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── EmailConfigurationModelProperties.cs │ │ │ │ │ │ ├── EmailConfigurationModelProperties.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorModel.PowerShell.cs │ │ │ │ │ │ ├── ErrorModel.TypeConverter.cs │ │ │ │ │ │ ├── ErrorModel.cs │ │ │ │ │ │ ├── ErrorModel.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── EventModel.PowerShell.cs │ │ │ │ │ │ ├── EventModel.TypeConverter.cs │ │ │ │ │ │ ├── EventModel.cs │ │ │ │ │ │ ├── EventModel.json.cs │ │ │ │ │ │ ├── EventModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── EventModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── EventModelCustomProperties.cs │ │ │ │ │ │ ├── EventModelCustomProperties.json.cs │ │ │ │ │ │ ├── EventModelListResult.PowerShell.cs │ │ │ │ │ │ ├── EventModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── EventModelListResult.cs │ │ │ │ │ │ ├── EventModelListResult.json.cs │ │ │ │ │ │ ├── EventModelProperties.PowerShell.cs │ │ │ │ │ │ ├── EventModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── EventModelProperties.cs │ │ │ │ │ │ ├── EventModelProperties.json.cs │ │ │ │ │ │ ├── FabricAgentModel.PowerShell.cs │ │ │ │ │ │ ├── FabricAgentModel.TypeConverter.cs │ │ │ │ │ │ ├── FabricAgentModel.cs │ │ │ │ │ │ ├── FabricAgentModel.json.cs │ │ │ │ │ │ ├── FabricAgentModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── FabricAgentModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── FabricAgentModelCustomProperties.cs │ │ │ │ │ │ ├── FabricAgentModelCustomProperties.json.cs │ │ │ │ │ │ ├── FabricAgentModelListResult.PowerShell.cs │ │ │ │ │ │ ├── FabricAgentModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── FabricAgentModelListResult.cs │ │ │ │ │ │ ├── FabricAgentModelListResult.json.cs │ │ │ │ │ │ ├── FabricAgentModelProperties.PowerShell.cs │ │ │ │ │ │ ├── FabricAgentModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── FabricAgentModelProperties.cs │ │ │ │ │ │ ├── FabricAgentModelProperties.json.cs │ │ │ │ │ │ ├── FabricModel.PowerShell.cs │ │ │ │ │ │ ├── FabricModel.TypeConverter.cs │ │ │ │ │ │ ├── FabricModel.cs │ │ │ │ │ │ ├── FabricModel.json.cs │ │ │ │ │ │ ├── FabricModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── FabricModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── FabricModelCustomProperties.cs │ │ │ │ │ │ ├── FabricModelCustomProperties.json.cs │ │ │ │ │ │ ├── FabricModelListResult.PowerShell.cs │ │ │ │ │ │ ├── FabricModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── FabricModelListResult.cs │ │ │ │ │ │ ├── FabricModelListResult.json.cs │ │ │ │ │ │ ├── FabricModelProperties.PowerShell.cs │ │ │ │ │ │ ├── FabricModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── FabricModelProperties.cs │ │ │ │ │ │ ├── FabricModelProperties.json.cs │ │ │ │ │ │ ├── FabricModelUpdate.PowerShell.cs │ │ │ │ │ │ ├── FabricModelUpdate.TypeConverter.cs │ │ │ │ │ │ ├── FabricModelUpdate.cs │ │ │ │ │ │ ├── FabricModelUpdate.json.cs │ │ │ │ │ │ ├── FabricModelUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── FabricModelUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── FabricModelUpdateTags.cs │ │ │ │ │ │ ├── FabricModelUpdateTags.dictionary.cs │ │ │ │ │ │ ├── FabricModelUpdateTags.json.cs │ │ │ │ │ │ ├── FailoverJobModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── FailoverJobModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── FailoverJobModelCustomProperties.cs │ │ │ │ │ │ ├── FailoverJobModelCustomProperties.json.cs │ │ │ │ │ │ ├── FailoverProtectedItemProperties.PowerShell.cs │ │ │ │ │ │ ├── FailoverProtectedItemProperties.TypeConverter.cs │ │ │ │ │ │ ├── FailoverProtectedItemProperties.cs │ │ │ │ │ │ ├── FailoverProtectedItemProperties.json.cs │ │ │ │ │ │ ├── GroupConnectivityInformation.PowerShell.cs │ │ │ │ │ │ ├── GroupConnectivityInformation.TypeConverter.cs │ │ │ │ │ │ ├── GroupConnectivityInformation.cs │ │ │ │ │ │ ├── GroupConnectivityInformation.json.cs │ │ │ │ │ │ ├── HealthErrorModel.PowerShell.cs │ │ │ │ │ │ ├── HealthErrorModel.TypeConverter.cs │ │ │ │ │ │ ├── HealthErrorModel.cs │ │ │ │ │ │ ├── HealthErrorModel.json.cs │ │ │ │ │ │ ├── HyperVMigrateFabricModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVMigrateFabricModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVMigrateFabricModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVMigrateFabricModelCustomProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHcidiskInput.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHcidiskInput.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHcidiskInput.cs │ │ │ │ │ │ ├── HyperVToAzStackHcidiskInput.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHcieventModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHcieventModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHcieventModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHcieventModelCustomProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHcinicInput.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHcinicInput.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHcinicInput.cs │ │ │ │ │ │ ├── HyperVToAzStackHcinicInput.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHciplannedFailoverModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHciplannedFailoverModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHciplannedFailoverModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHciplannedFailoverModelCustomProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHcipolicyModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHcipolicyModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHcipolicyModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHcipolicyModelCustomProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedDiskProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedDiskProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedDiskProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedDiskProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomPropertiesUpdate.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedItemModelCustomPropertiesUpdate.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedNicProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedNicProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedNicProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHciprotectedNicProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHcirecoveryPointModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHcirecoveryPointModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHcirecoveryPointModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHcirecoveryPointModelCustomProperties.json.cs │ │ │ │ │ │ ├── HyperVToAzStackHcireplicationExtensionModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── HyperVToAzStackHcireplicationExtensionModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── HyperVToAzStackHcireplicationExtensionModelCustomProperties.cs │ │ │ │ │ │ ├── HyperVToAzStackHcireplicationExtensionModelCustomProperties.json.cs │ │ │ │ │ │ ├── IdentityModel.PowerShell.cs │ │ │ │ │ │ ├── IdentityModel.TypeConverter.cs │ │ │ │ │ │ ├── IdentityModel.cs │ │ │ │ │ │ ├── IdentityModel.json.cs │ │ │ │ │ │ ├── InnerHealthErrorModel.PowerShell.cs │ │ │ │ │ │ ├── InnerHealthErrorModel.TypeConverter.cs │ │ │ │ │ │ ├── InnerHealthErrorModel.cs │ │ │ │ │ │ ├── InnerHealthErrorModel.json.cs │ │ │ │ │ │ ├── JobModel.PowerShell.cs │ │ │ │ │ │ ├── JobModel.TypeConverter.cs │ │ │ │ │ │ ├── JobModel.cs │ │ │ │ │ │ ├── JobModel.json.cs │ │ │ │ │ │ ├── JobModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── JobModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── JobModelCustomProperties.cs │ │ │ │ │ │ ├── JobModelCustomProperties.json.cs │ │ │ │ │ │ ├── JobModelListResult.PowerShell.cs │ │ │ │ │ │ ├── JobModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── JobModelListResult.cs │ │ │ │ │ │ ├── JobModelListResult.json.cs │ │ │ │ │ │ ├── JobModelProperties.PowerShell.cs │ │ │ │ │ │ ├── JobModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── JobModelProperties.cs │ │ │ │ │ │ ├── JobModelProperties.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationStatus.PowerShell.cs │ │ │ │ │ │ ├── OperationStatus.TypeConverter.cs │ │ │ │ │ │ ├── OperationStatus.cs │ │ │ │ │ │ ├── OperationStatus.json.cs │ │ │ │ │ │ ├── PlannedFailoverModel.PowerShell.cs │ │ │ │ │ │ ├── PlannedFailoverModel.TypeConverter.cs │ │ │ │ │ │ ├── PlannedFailoverModel.cs │ │ │ │ │ │ ├── PlannedFailoverModel.json.cs │ │ │ │ │ │ ├── PlannedFailoverModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── PlannedFailoverModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── PlannedFailoverModelCustomProperties.cs │ │ │ │ │ │ ├── PlannedFailoverModelCustomProperties.json.cs │ │ │ │ │ │ ├── PlannedFailoverModelProperties.PowerShell.cs │ │ │ │ │ │ ├── PlannedFailoverModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── PlannedFailoverModelProperties.cs │ │ │ │ │ │ ├── PlannedFailoverModelProperties.json.cs │ │ │ │ │ │ ├── PolicyModel.PowerShell.cs │ │ │ │ │ │ ├── PolicyModel.TypeConverter.cs │ │ │ │ │ │ ├── PolicyModel.cs │ │ │ │ │ │ ├── PolicyModel.json.cs │ │ │ │ │ │ ├── PolicyModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── PolicyModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── PolicyModelCustomProperties.cs │ │ │ │ │ │ ├── PolicyModelCustomProperties.json.cs │ │ │ │ │ │ ├── PolicyModelListResult.PowerShell.cs │ │ │ │ │ │ ├── PolicyModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── PolicyModelListResult.cs │ │ │ │ │ │ ├── PolicyModelListResult.json.cs │ │ │ │ │ │ ├── PolicyModelProperties.PowerShell.cs │ │ │ │ │ │ ├── PolicyModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── PolicyModelProperties.cs │ │ │ │ │ │ ├── PolicyModelProperties.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxy.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxy.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxy.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxy.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProxyProperties.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResponseProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResponseProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnection.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnection.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceProxy.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceProxy.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceProxy.cs │ │ │ │ │ │ ├── PrivateLinkServiceProxy.json.cs │ │ │ │ │ │ ├── ProtectedItemDynamicMemoryConfig.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemDynamicMemoryConfig.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemDynamicMemoryConfig.cs │ │ │ │ │ │ ├── ProtectedItemDynamicMemoryConfig.json.cs │ │ │ │ │ │ ├── ProtectedItemJobProperties.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemJobProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemJobProperties.cs │ │ │ │ │ │ ├── ProtectedItemJobProperties.json.cs │ │ │ │ │ │ ├── ProtectedItemModel.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModel.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModel.cs │ │ │ │ │ │ ├── ProtectedItemModel.json.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomProperties.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomProperties.json.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomPropertiesUpdate.cs │ │ │ │ │ │ ├── ProtectedItemModelCustomPropertiesUpdate.json.cs │ │ │ │ │ │ ├── ProtectedItemModelListResult.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModelListResult.cs │ │ │ │ │ │ ├── ProtectedItemModelListResult.json.cs │ │ │ │ │ │ ├── ProtectedItemModelProperties.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModelProperties.cs │ │ │ │ │ │ ├── ProtectedItemModelProperties.json.cs │ │ │ │ │ │ ├── ProtectedItemModelPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModelPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModelPropertiesUpdate.cs │ │ │ │ │ │ ├── ProtectedItemModelPropertiesUpdate.json.cs │ │ │ │ │ │ ├── ProtectedItemModelUpdate.PowerShell.cs │ │ │ │ │ │ ├── ProtectedItemModelUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ProtectedItemModelUpdate.cs │ │ │ │ │ │ ├── ProtectedItemModelUpdate.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── RecoveryPointModel.PowerShell.cs │ │ │ │ │ │ ├── RecoveryPointModel.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryPointModel.cs │ │ │ │ │ │ ├── RecoveryPointModel.json.cs │ │ │ │ │ │ ├── RecoveryPointModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── RecoveryPointModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryPointModelCustomProperties.cs │ │ │ │ │ │ ├── RecoveryPointModelCustomProperties.json.cs │ │ │ │ │ │ ├── RecoveryPointModelListResult.PowerShell.cs │ │ │ │ │ │ ├── RecoveryPointModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryPointModelListResult.cs │ │ │ │ │ │ ├── RecoveryPointModelListResult.json.cs │ │ │ │ │ │ ├── RecoveryPointModelProperties.PowerShell.cs │ │ │ │ │ │ ├── RecoveryPointModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryPointModelProperties.cs │ │ │ │ │ │ ├── RecoveryPointModelProperties.json.cs │ │ │ │ │ │ ├── RecoveryServicesDataReplicationIdentity.PowerShell.cs │ │ │ │ │ │ ├── RecoveryServicesDataReplicationIdentity.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryServicesDataReplicationIdentity.cs │ │ │ │ │ │ ├── RecoveryServicesDataReplicationIdentity.json.cs │ │ │ │ │ │ ├── RemotePrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── RemotePrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── RemotePrivateEndpoint.cs │ │ │ │ │ │ ├── RemotePrivateEndpoint.json.cs │ │ │ │ │ │ ├── RemotePrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── RemotePrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── RemotePrivateEndpointConnection.cs │ │ │ │ │ │ ├── RemotePrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── ReplicationExtensionModel.PowerShell.cs │ │ │ │ │ │ ├── ReplicationExtensionModel.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationExtensionModel.cs │ │ │ │ │ │ ├── ReplicationExtensionModel.json.cs │ │ │ │ │ │ ├── ReplicationExtensionModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── ReplicationExtensionModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationExtensionModelCustomProperties.cs │ │ │ │ │ │ ├── ReplicationExtensionModelCustomProperties.json.cs │ │ │ │ │ │ ├── ReplicationExtensionModelListResult.PowerShell.cs │ │ │ │ │ │ ├── ReplicationExtensionModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationExtensionModelListResult.cs │ │ │ │ │ │ ├── ReplicationExtensionModelListResult.json.cs │ │ │ │ │ │ ├── ReplicationExtensionModelProperties.PowerShell.cs │ │ │ │ │ │ ├── ReplicationExtensionModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationExtensionModelProperties.cs │ │ │ │ │ │ ├── ReplicationExtensionModelProperties.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── StorageContainerProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageContainerProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageContainerProperties.cs │ │ │ │ │ │ ├── StorageContainerProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TaskModel.PowerShell.cs │ │ │ │ │ │ ├── TaskModel.TypeConverter.cs │ │ │ │ │ │ ├── TaskModel.cs │ │ │ │ │ │ ├── TaskModel.json.cs │ │ │ │ │ │ ├── TaskModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── TaskModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── TaskModelCustomProperties.cs │ │ │ │ │ │ ├── TaskModelCustomProperties.json.cs │ │ │ │ │ │ ├── TestFailoverCleanupJobModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── TestFailoverCleanupJobModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── TestFailoverCleanupJobModelCustomProperties.cs │ │ │ │ │ │ ├── TestFailoverCleanupJobModelCustomProperties.json.cs │ │ │ │ │ │ ├── TestFailoverJobModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── TestFailoverJobModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── TestFailoverJobModelCustomProperties.cs │ │ │ │ │ │ ├── TestFailoverJobModelCustomProperties.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VMwareFabricAgentModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareFabricAgentModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareFabricAgentModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareFabricAgentModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareMigrateFabricModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareMigrateFabricModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareMigrateFabricModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareMigrateFabricModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHcidiskInput.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHcidiskInput.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHcidiskInput.cs │ │ │ │ │ │ ├── VMwareToAzStackHcidiskInput.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHcieventModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHcieventModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHcieventModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHcieventModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHcinicInput.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHcinicInput.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHcinicInput.cs │ │ │ │ │ │ ├── VMwareToAzStackHcinicInput.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHciplannedFailoverModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHciplannedFailoverModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHciplannedFailoverModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHciplannedFailoverModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHcipolicyModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHcipolicyModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHcipolicyModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHcipolicyModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedDiskProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedDiskProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedDiskProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedDiskProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomPropertiesUpdate.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedItemModelCustomPropertiesUpdate.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedNicProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedNicProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedNicProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHciprotectedNicProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHcirecoveryPointModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHcirecoveryPointModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHcirecoveryPointModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHcirecoveryPointModelCustomProperties.json.cs │ │ │ │ │ │ ├── VMwareToAzStackHcireplicationExtensionModelCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── VMwareToAzStackHcireplicationExtensionModelCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMwareToAzStackHcireplicationExtensionModelCustomProperties.cs │ │ │ │ │ │ ├── VMwareToAzStackHcireplicationExtensionModelCustomProperties.json.cs │ │ │ │ │ │ ├── VaultIdentityModel.PowerShell.cs │ │ │ │ │ │ ├── VaultIdentityModel.TypeConverter.cs │ │ │ │ │ │ ├── VaultIdentityModel.cs │ │ │ │ │ │ ├── VaultIdentityModel.json.cs │ │ │ │ │ │ ├── VaultModel.PowerShell.cs │ │ │ │ │ │ ├── VaultModel.TypeConverter.cs │ │ │ │ │ │ ├── VaultModel.cs │ │ │ │ │ │ ├── VaultModel.json.cs │ │ │ │ │ │ ├── VaultModelListResult.PowerShell.cs │ │ │ │ │ │ ├── VaultModelListResult.TypeConverter.cs │ │ │ │ │ │ ├── VaultModelListResult.cs │ │ │ │ │ │ ├── VaultModelListResult.json.cs │ │ │ │ │ │ ├── VaultModelProperties.PowerShell.cs │ │ │ │ │ │ ├── VaultModelProperties.TypeConverter.cs │ │ │ │ │ │ ├── VaultModelProperties.cs │ │ │ │ │ │ ├── VaultModelProperties.json.cs │ │ │ │ │ │ ├── VaultModelUpdate.PowerShell.cs │ │ │ │ │ │ ├── VaultModelUpdate.TypeConverter.cs │ │ │ │ │ │ ├── VaultModelUpdate.cs │ │ │ │ │ │ ├── VaultModelUpdate.json.cs │ │ │ │ │ │ ├── VaultModelUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── VaultModelUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── VaultModelUpdateTags.cs │ │ │ │ │ │ ├── VaultModelUpdateTags.dictionary.cs │ │ │ │ │ │ └── VaultModelUpdateTags.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEmailConfiguration_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEmailConfiguration_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEmailConfiguration_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEmailConfiguration_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEvent_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEvent_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEvent_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationEvent_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationExtension_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationExtension_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationExtension_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationExtension_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabricAgent_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabricAgent_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabricAgent_GetViaIdentityReplicationFabric.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabricAgent_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabric_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabric_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabric_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationFabric_List1.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationJob_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationJob_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationJob_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationJob_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationLocationBasedOperationResult_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationLocationBasedOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationLocationBasedOperationResult_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationOperationResult_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationOperation_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPolicy_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPolicy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPolicy_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPolicy_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationProtectedItem_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationProtectedItem_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationProtectedItem_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationProtectedItem_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationRecoveryPoint_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationRecoveryPoint_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationRecoveryPoint_GetViaIdentityProtectedItem.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationRecoveryPoint_GetViaIdentityReplicationVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationRecoveryPoint_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationVault_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationVault_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationVault_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesDataReplicationVault_List1.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationCheckNameAvailability_Post.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationCheckNameAvailability_PostExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationCheckNameAvailability_PostViaIdentity.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationCheckNameAvailability_PostViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationCheckNameAvailability_PostViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationCheckNameAvailability_PostViaJsonString.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationDeploymentPreflight_Post.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationDeploymentPreflight_PostExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationDeploymentPreflight_PostViaIdentity.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationDeploymentPreflight_PostViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationDeploymentPreflight_PostViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationDeploymentPreflight_PostViaJsonString.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_Planned.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedViaIdentity.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedViaIdentityReplicationVault.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesDataReplicationPlannedProtectedItemFailover_PlannedViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationEmailConfiguration_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationEmailConfiguration_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationEmailConfiguration_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationExtension_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationExtension_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationExtension_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationFabricAgent_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationFabricAgent_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationFabricAgent_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationFabric_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationFabric_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationFabric_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationPolicy_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationPolicy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationPolicy_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationProtectedItem_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationProtectedItem_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationProtectedItem_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationVault_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationVault_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesDataReplicationVault_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationExtension_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationExtension_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationExtension_DeleteViaIdentityReplicationVault.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationFabricAgent_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationFabricAgent_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationFabricAgent_DeleteViaIdentityReplicationFabric.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationFabric_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationFabric_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationPolicy_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationPolicy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationPolicy_DeleteViaIdentityReplicationVault.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_DeleteViaIdentityReplicationVault.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationProtectedItem_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationProtectedItem_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationProtectedItem_DeleteViaIdentityReplicationVault.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationVault_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesDataReplicationVault_DeleteViaIdentity.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_Validate.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateExpanded.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateViaIdentityReplicationVault.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_ValidateViaJsonString.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationEmailConfiguration_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationEmailConfiguration_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationEmailConfiguration_UpdateViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationExtension_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationExtension_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationExtension_UpdateViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabricAgent_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabricAgent_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabricAgent_UpdateViaIdentityReplicationFabricExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabric_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabric_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabric_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationFabric_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationPolicy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationPolicy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationPolicy_UpdateViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationPrivateEndpointConnectionProxy_UpdateViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationProtectedItem_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationProtectedItem_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationProtectedItem_UpdateViaIdentityReplicationVaultExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationProtectedItem_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationProtectedItem_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesDataReplicationVault_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzRecoveryServicesDataReplicationVault_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.RecoveryServicesDataReplication.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── DeviceProvisioningServices.brown │ │ ├── CertificateResponse.tsp │ │ ├── GroupIdInformation.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── ProvisioningServiceDescription.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── readme.cli.md │ │ ├── readme.go.md │ │ ├── readme.java.md │ │ ├── readme.md │ │ ├── readme.nodejs.md │ │ ├── readme.python.md │ │ ├── readme.typescript.md │ │ ├── routes.tsp │ │ ├── suppressions.yaml │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.DeviceProvisioningServices.csproj │ │ │ ├── Az.DeviceProvisioningServices.nuspec │ │ │ ├── Az.DeviceProvisioningServices.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.DeviceProvisioningServices.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── IotDpsClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AsyncOperationResult.PowerShell.cs │ │ │ │ │ │ ├── AsyncOperationResult.TypeConverter.cs │ │ │ │ │ │ ├── AsyncOperationResult.cs │ │ │ │ │ │ ├── AsyncOperationResult.json.cs │ │ │ │ │ │ ├── CertificateListDescription.PowerShell.cs │ │ │ │ │ │ ├── CertificateListDescription.TypeConverter.cs │ │ │ │ │ │ ├── CertificateListDescription.cs │ │ │ │ │ │ ├── CertificateListDescription.json.cs │ │ │ │ │ │ ├── CertificateProperties.PowerShell.cs │ │ │ │ │ │ ├── CertificateProperties.TypeConverter.cs │ │ │ │ │ │ ├── CertificateProperties.cs │ │ │ │ │ │ ├── CertificateProperties.json.cs │ │ │ │ │ │ ├── CertificateResponse.PowerShell.cs │ │ │ │ │ │ ├── CertificateResponse.TypeConverter.cs │ │ │ │ │ │ ├── CertificateResponse.cs │ │ │ │ │ │ ├── CertificateResponse.json.cs │ │ │ │ │ │ ├── DeviceProvisioningServicesIdentity.PowerShell.cs │ │ │ │ │ │ ├── DeviceProvisioningServicesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── DeviceProvisioningServicesIdentity.cs │ │ │ │ │ │ ├── DeviceProvisioningServicesIdentity.json.cs │ │ │ │ │ │ ├── DeviceRegistryNamespaceDescription.PowerShell.cs │ │ │ │ │ │ ├── DeviceRegistryNamespaceDescription.TypeConverter.cs │ │ │ │ │ │ ├── DeviceRegistryNamespaceDescription.cs │ │ │ │ │ │ ├── DeviceRegistryNamespaceDescription.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorDetails.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetails.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetails.cs │ │ │ │ │ │ ├── ErrorDetails.json.cs │ │ │ │ │ │ ├── ErrorMessage.PowerShell.cs │ │ │ │ │ │ ├── ErrorMessage.TypeConverter.cs │ │ │ │ │ │ ├── ErrorMessage.cs │ │ │ │ │ │ ├── ErrorMessage.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── GroupIdInformation.PowerShell.cs │ │ │ │ │ │ ├── GroupIdInformation.TypeConverter.cs │ │ │ │ │ │ ├── GroupIdInformation.cs │ │ │ │ │ │ ├── GroupIdInformation.json.cs │ │ │ │ │ │ ├── GroupIdInformationProperties.PowerShell.cs │ │ │ │ │ │ ├── GroupIdInformationProperties.TypeConverter.cs │ │ │ │ │ │ ├── GroupIdInformationProperties.cs │ │ │ │ │ │ ├── GroupIdInformationProperties.json.cs │ │ │ │ │ │ ├── IPFilterRule.PowerShell.cs │ │ │ │ │ │ ├── IPFilterRule.TypeConverter.cs │ │ │ │ │ │ ├── IPFilterRule.cs │ │ │ │ │ │ ├── IPFilterRule.json.cs │ │ │ │ │ │ ├── IotDpsPropertiesDescription.PowerShell.cs │ │ │ │ │ │ ├── IotDpsPropertiesDescription.TypeConverter.cs │ │ │ │ │ │ ├── IotDpsPropertiesDescription.cs │ │ │ │ │ │ ├── IotDpsPropertiesDescription.json.cs │ │ │ │ │ │ ├── IotDpsSkuDefinition.PowerShell.cs │ │ │ │ │ │ ├── IotDpsSkuDefinition.TypeConverter.cs │ │ │ │ │ │ ├── IotDpsSkuDefinition.cs │ │ │ │ │ │ ├── IotDpsSkuDefinition.json.cs │ │ │ │ │ │ ├── IotDpsSkuDefinitionListResult.PowerShell.cs │ │ │ │ │ │ ├── IotDpsSkuDefinitionListResult.TypeConverter.cs │ │ │ │ │ │ ├── IotDpsSkuDefinitionListResult.cs │ │ │ │ │ │ ├── IotDpsSkuDefinitionListResult.json.cs │ │ │ │ │ │ ├── IotDpsSkuInfo.PowerShell.cs │ │ │ │ │ │ ├── IotDpsSkuInfo.TypeConverter.cs │ │ │ │ │ │ ├── IotDpsSkuInfo.cs │ │ │ │ │ │ ├── IotDpsSkuInfo.json.cs │ │ │ │ │ │ ├── IotHubDefinitionDescription.PowerShell.cs │ │ │ │ │ │ ├── IotHubDefinitionDescription.TypeConverter.cs │ │ │ │ │ │ ├── IotHubDefinitionDescription.cs │ │ │ │ │ │ ├── IotHubDefinitionDescription.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── NameAvailabilityInfo.PowerShell.cs │ │ │ │ │ │ ├── NameAvailabilityInfo.TypeConverter.cs │ │ │ │ │ │ ├── NameAvailabilityInfo.cs │ │ │ │ │ │ ├── NameAvailabilityInfo.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationInputs.PowerShell.cs │ │ │ │ │ │ ├── OperationInputs.TypeConverter.cs │ │ │ │ │ │ ├── OperationInputs.cs │ │ │ │ │ │ ├── OperationInputs.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResources.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResources.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResources.cs │ │ │ │ │ │ ├── PrivateLinkResources.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProvisioningServiceDescription.PowerShell.cs │ │ │ │ │ │ ├── ProvisioningServiceDescription.TypeConverter.cs │ │ │ │ │ │ ├── ProvisioningServiceDescription.cs │ │ │ │ │ │ ├── ProvisioningServiceDescription.json.cs │ │ │ │ │ │ ├── ProvisioningServiceDescriptionListResult.PowerShell.cs │ │ │ │ │ │ ├── ProvisioningServiceDescriptionListResult.TypeConverter.cs │ │ │ │ │ │ ├── ProvisioningServiceDescriptionListResult.cs │ │ │ │ │ │ ├── ProvisioningServiceDescriptionListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleAccessRightsDescription.PowerShell.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleAccessRightsDescription.TypeConverter.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleAccessRightsDescription.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleAccessRightsDescription.json.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleListResult.PowerShell.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleListResult.TypeConverter.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleListResult.cs │ │ │ │ │ │ ├── SharedAccessSignatureAuthorizationRuleListResult.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TagsResource.PowerShell.cs │ │ │ │ │ │ ├── TagsResource.TypeConverter.cs │ │ │ │ │ │ ├── TagsResource.cs │ │ │ │ │ │ ├── TagsResource.json.cs │ │ │ │ │ │ ├── TagsResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TagsResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TagsResourceTags.cs │ │ │ │ │ │ ├── TagsResourceTags.dictionary.cs │ │ │ │ │ │ ├── TagsResourceTags.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VerificationCodeRequest.PowerShell.cs │ │ │ │ │ │ ├── VerificationCodeRequest.TypeConverter.cs │ │ │ │ │ │ ├── VerificationCodeRequest.cs │ │ │ │ │ │ ├── VerificationCodeRequest.json.cs │ │ │ │ │ │ ├── VerificationCodeResponse.PowerShell.cs │ │ │ │ │ │ ├── VerificationCodeResponse.TypeConverter.cs │ │ │ │ │ │ ├── VerificationCodeResponse.cs │ │ │ │ │ │ ├── VerificationCodeResponse.json.cs │ │ │ │ │ │ ├── VerificationCodeResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── VerificationCodeResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── VerificationCodeResponseProperties.cs │ │ │ │ │ │ └── VerificationCodeResponseProperties.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzDeviceProvisioningServicesDpsCertificate_Get.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesDpsCertificate_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesDpsCertificate_GetViaIdentityProvisioningService.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesDpsCertificate_List.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourceKey_List.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourceKey_List1.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourceOperationResult_Get.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourceOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourceOperationResult_GetViaIdentityProvisioningService.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_Get.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_GetViaIdentityProvisioningService.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_List.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateLinkResource_Get.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateLinkResource_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateLinkResource_GetViaIdentityProvisioningService.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourcePrivateLinkResource_List.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResourceValidSku_List.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResource_Get.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResource_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResource_List.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesIotDpsResource_List1.cs │ │ │ │ │ ├── GetAzDeviceProvisioningServicesOperation_List.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesDpsCertificateVerificationCode_Generate.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesDpsCertificateVerificationCode_GenerateViaIdentity.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesDpsCertificateVerificationCode_GenerateViaIdentityProvisioningService.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesDpsCertificate_CreateExpanded.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesDpsCertificate_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesDpsCertificate_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_CreateExpanded.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesIotDpsResource_CreateExpanded.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesIotDpsResource_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDeviceProvisioningServicesIotDpsResource_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesDpsCertificate_Delete.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesDpsCertificate_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesDpsCertificate_DeleteViaIdentityProvisioningService.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_Delete.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_DeleteViaIdentityProvisioningService.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesIotDpsResource_Delete.cs │ │ │ │ │ ├── RemoveAzDeviceProvisioningServicesIotDpsResource_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesDpsCertificate_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesDpsCertificate_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesDpsCertificate_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesIotDpsResourcePrivateEndpointConnection_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesIotDpsResource_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesIotDpsResource_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDeviceProvisioningServicesIotDpsResource_UpdateViaJsonString.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_Verify.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyExpanded.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyViaIdentity.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyViaIdentityProvisioningService.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyViaIdentityProvisioningServiceExpanded.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesDpsCertificate_VerifyViaJsonString.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesIotDpsResourceProvisioningServiceNameAvailability_Check.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesIotDpsResourceProvisioningServiceNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesIotDpsResourceProvisioningServiceNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDeviceProvisioningServicesIotDpsResourceProvisioningServiceNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzDeviceProvisioningServicesDpsCertificate_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceProvisioningServicesDpsCertificate_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceProvisioningServicesDpsCertificate_UpdateViaIdentityProvisioningServiceExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceProvisioningServicesIotDpsResource_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceProvisioningServicesIotDpsResource_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceProvisioningServicesIotDpsResource_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzDeviceProvisioningServicesIotDpsResource_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.DeviceProvisioningServices.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── DeviceRegistry.Management │ │ ├── assetEndpointProfiles.tsp │ │ ├── assets.tsp │ │ ├── billings.tsp │ │ ├── client.tsp │ │ ├── common │ │ │ ├── authenticationMethod.tsp │ │ │ ├── extendedLocation.tsp │ │ │ ├── provisioningState.tsp │ │ │ └── topic.tsp │ │ ├── discoveredAssetEndpointProfiles.tsp │ │ ├── discoveredAssets.tsp │ │ ├── examples │ │ │ ├── 2023-11-01-preview │ │ │ │ ├── Create_AssetEndpointProfile.json │ │ │ │ ├── Create_Asset_With_ExternalAssetId.json │ │ │ │ ├── Create_Asset_Without_DisplayName.json │ │ │ │ ├── Create_Asset_Without_ExternalAssetId.json │ │ │ │ ├── Delete_Asset.json │ │ │ │ ├── Delete_AssetEndpointProfile.json │ │ │ │ ├── Get_Asset.json │ │ │ │ ├── Get_AssetEndpointProfile.json │ │ │ │ ├── Get_Asset_With_SyncStatus.json │ │ │ │ ├── Get_OperationStatus.json │ │ │ │ ├── List_AssetEndpointProfiles_ResourceGroup.json │ │ │ │ ├── List_AssetEndpointProfiles_Subscription.json │ │ │ │ ├── List_Assets_ResourceGroup.json │ │ │ │ ├── List_Assets_Subscription.json │ │ │ │ ├── List_Operations.json │ │ │ │ ├── Update_Asset.json │ │ │ │ └── Update_AssetEndpointProfile.json │ │ │ ├── 2024-09-01-preview │ │ │ │ ├── Create_AssetEndpointProfile.json │ │ │ │ ├── Create_AssetEndpointProfile_With_DiscoveredAepRef.json │ │ │ │ ├── Create_Asset_With_DiscoveredAssetRef.json │ │ │ │ ├── Create_Asset_With_ExternalAssetId.json │ │ │ │ ├── Create_Asset_Without_DisplayName.json │ │ │ │ ├── Create_Asset_Without_ExternalAssetId.json │ │ │ │ ├── Create_DiscoveredAsset.json │ │ │ │ ├── Create_DiscoveredAssetEndpointProfile.json │ │ │ │ ├── Create_Schema.json │ │ │ │ ├── Create_SchemaRegistry.json │ │ │ │ ├── Create_SchemaVersion.json │ │ │ │ ├── Delete_Asset.json │ │ │ │ ├── Delete_AssetEndpointProfile.json │ │ │ │ ├── Delete_DiscoveredAsset.json │ │ │ │ ├── Delete_DiscoveredAssetEndpointProfile.json │ │ │ │ ├── Delete_Schema.json │ │ │ │ ├── Delete_SchemaRegistry.json │ │ │ │ ├── Delete_SchemaVersion.json │ │ │ │ ├── Get_Asset.json │ │ │ │ ├── Get_AssetEndpointProfile.json │ │ │ │ ├── Get_AssetEndpointProfile_With_SyncStatus.json │ │ │ │ ├── Get_Asset_With_SyncStatus.json │ │ │ │ ├── Get_BillingContainer.json │ │ │ │ ├── Get_DiscoveredAsset.json │ │ │ │ ├── Get_DiscoveredAssetEndpointProfile.json │ │ │ │ ├── Get_OperationStatus.json │ │ │ │ ├── Get_Schema.json │ │ │ │ ├── Get_SchemaRegistry.json │ │ │ │ ├── Get_SchemaVersion.json │ │ │ │ ├── List_AssetEndpointProfiles_ResourceGroup.json │ │ │ │ ├── List_AssetEndpointProfiles_Subscription.json │ │ │ │ ├── List_Assets_ResourceGroup.json │ │ │ │ ├── List_Assets_Subscription.json │ │ │ │ ├── List_BillingContainers_Subscription.json │ │ │ │ ├── List_DiscoveredAssetEndpointProfiles_ResourceGroup.json │ │ │ │ ├── List_DiscoveredAssetEndpointProfiles_Subscription.json │ │ │ │ ├── List_DiscoveredAssets_ResourceGroup.json │ │ │ │ ├── List_DiscoveredAssets_Subscription.json │ │ │ │ ├── List_Operations.json │ │ │ │ ├── List_SchemaRegistries_ResourceGroup.json │ │ │ │ ├── List_SchemaRegistries_Subscription.json │ │ │ │ ├── List_SchemaVersions_Schema.json │ │ │ │ ├── List_Schemas_SchemaRegistry.json │ │ │ │ ├── Update_Asset.json │ │ │ │ ├── Update_AssetEndpointProfile.json │ │ │ │ ├── Update_DiscoveredAsset.json │ │ │ │ ├── Update_DiscoveredAssetEndpointProfile.json │ │ │ │ └── Update_SchemaRegistry.json │ │ │ └── 2024-11-01 │ │ │ │ ├── Create_AssetEndpointProfile.json │ │ │ │ ├── Create_AssetEndpointProfile_With_DiscoveredAepRef.json │ │ │ │ ├── Create_Asset_With_DiscoveredAssetRef.json │ │ │ │ ├── Create_Asset_With_ExternalAssetId.json │ │ │ │ ├── Create_Asset_Without_DisplayName.json │ │ │ │ ├── Create_Asset_Without_ExternalAssetId.json │ │ │ │ ├── Delete_Asset.json │ │ │ │ ├── Delete_AssetEndpointProfile.json │ │ │ │ ├── Get_Asset.json │ │ │ │ ├── Get_AssetEndpointProfile.json │ │ │ │ ├── Get_AssetEndpointProfile_With_SyncStatus.json │ │ │ │ ├── Get_Asset_With_SyncStatus.json │ │ │ │ ├── Get_BillingContainer.json │ │ │ │ ├── Get_OperationStatus.json │ │ │ │ ├── List_AssetEndpointProfiles_ResourceGroup.json │ │ │ │ ├── List_AssetEndpointProfiles_Subscription.json │ │ │ │ ├── List_Assets_ResourceGroup.json │ │ │ │ ├── List_Assets_Subscription.json │ │ │ │ ├── List_BillingContainers_Subscription.json │ │ │ │ ├── List_Operations.json │ │ │ │ ├── Update_Asset.json │ │ │ │ └── Update_AssetEndpointProfile.json │ │ ├── main.tsp │ │ ├── schemaRegistries.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.DeviceRegistry.csproj │ │ │ ├── Az.DeviceRegistry.nuspec │ │ │ ├── Az.DeviceRegistry.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.DeviceRegistry.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftDeviceRegistryManagementService.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── Asset.PowerShell.cs │ │ │ │ │ │ ├── Asset.TypeConverter.cs │ │ │ │ │ │ ├── Asset.cs │ │ │ │ │ │ ├── Asset.json.cs │ │ │ │ │ │ ├── AssetEndpointProfile.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfile.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfile.cs │ │ │ │ │ │ ├── AssetEndpointProfile.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileListResult.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileListResult.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileListResult.cs │ │ │ │ │ │ ├── AssetEndpointProfileListResult.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileProperties.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileProperties.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileProperties.cs │ │ │ │ │ │ ├── AssetEndpointProfileProperties.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatus.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatus.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatus.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatus.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatusError.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatusError.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatusError.cs │ │ │ │ │ │ ├── AssetEndpointProfileStatusError.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdate.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdate.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdate.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdate.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateProperties.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateProperties.json.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateTags.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateTags.dictionary.cs │ │ │ │ │ │ ├── AssetEndpointProfileUpdateTags.json.cs │ │ │ │ │ │ ├── AssetEndpointProfilesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfilesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfilesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AssetEndpointProfilesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AssetEndpointProfilesUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AssetEndpointProfilesUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AssetEndpointProfilesUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AssetEndpointProfilesUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AssetListResult.PowerShell.cs │ │ │ │ │ │ ├── AssetListResult.TypeConverter.cs │ │ │ │ │ │ ├── AssetListResult.cs │ │ │ │ │ │ ├── AssetListResult.json.cs │ │ │ │ │ │ ├── AssetProperties.PowerShell.cs │ │ │ │ │ │ ├── AssetProperties.TypeConverter.cs │ │ │ │ │ │ ├── AssetProperties.cs │ │ │ │ │ │ ├── AssetProperties.json.cs │ │ │ │ │ │ ├── AssetPropertiesAttributes.PowerShell.cs │ │ │ │ │ │ ├── AssetPropertiesAttributes.TypeConverter.cs │ │ │ │ │ │ ├── AssetPropertiesAttributes.cs │ │ │ │ │ │ ├── AssetPropertiesAttributes.dictionary.cs │ │ │ │ │ │ ├── AssetPropertiesAttributes.json.cs │ │ │ │ │ │ ├── AssetStatus.PowerShell.cs │ │ │ │ │ │ ├── AssetStatus.TypeConverter.cs │ │ │ │ │ │ ├── AssetStatus.cs │ │ │ │ │ │ ├── AssetStatus.json.cs │ │ │ │ │ │ ├── AssetStatusDataset.PowerShell.cs │ │ │ │ │ │ ├── AssetStatusDataset.TypeConverter.cs │ │ │ │ │ │ ├── AssetStatusDataset.cs │ │ │ │ │ │ ├── AssetStatusDataset.json.cs │ │ │ │ │ │ ├── AssetStatusError.PowerShell.cs │ │ │ │ │ │ ├── AssetStatusError.TypeConverter.cs │ │ │ │ │ │ ├── AssetStatusError.cs │ │ │ │ │ │ ├── AssetStatusError.json.cs │ │ │ │ │ │ ├── AssetStatusEvent.PowerShell.cs │ │ │ │ │ │ ├── AssetStatusEvent.TypeConverter.cs │ │ │ │ │ │ ├── AssetStatusEvent.cs │ │ │ │ │ │ ├── AssetStatusEvent.json.cs │ │ │ │ │ │ ├── AssetUpdate.PowerShell.cs │ │ │ │ │ │ ├── AssetUpdate.TypeConverter.cs │ │ │ │ │ │ ├── AssetUpdate.cs │ │ │ │ │ │ ├── AssetUpdate.json.cs │ │ │ │ │ │ ├── AssetUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AssetUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AssetUpdateProperties.cs │ │ │ │ │ │ ├── AssetUpdateProperties.json.cs │ │ │ │ │ │ ├── AssetUpdatePropertiesAttributes.PowerShell.cs │ │ │ │ │ │ ├── AssetUpdatePropertiesAttributes.TypeConverter.cs │ │ │ │ │ │ ├── AssetUpdatePropertiesAttributes.cs │ │ │ │ │ │ ├── AssetUpdatePropertiesAttributes.dictionary.cs │ │ │ │ │ │ ├── AssetUpdatePropertiesAttributes.json.cs │ │ │ │ │ │ ├── AssetUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── AssetUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── AssetUpdateTags.cs │ │ │ │ │ │ ├── AssetUpdateTags.dictionary.cs │ │ │ │ │ │ ├── AssetUpdateTags.json.cs │ │ │ │ │ │ ├── AssetsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AssetsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AssetsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AssetsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AssetsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AssetsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AssetsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AssetsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── Authentication.PowerShell.cs │ │ │ │ │ │ ├── Authentication.TypeConverter.cs │ │ │ │ │ │ ├── Authentication.cs │ │ │ │ │ │ ├── Authentication.json.cs │ │ │ │ │ │ ├── BillingContainer.PowerShell.cs │ │ │ │ │ │ ├── BillingContainer.TypeConverter.cs │ │ │ │ │ │ ├── BillingContainer.cs │ │ │ │ │ │ ├── BillingContainer.json.cs │ │ │ │ │ │ ├── BillingContainerListResult.PowerShell.cs │ │ │ │ │ │ ├── BillingContainerListResult.TypeConverter.cs │ │ │ │ │ │ ├── BillingContainerListResult.cs │ │ │ │ │ │ ├── BillingContainerListResult.json.cs │ │ │ │ │ │ ├── BillingContainerProperties.PowerShell.cs │ │ │ │ │ │ ├── BillingContainerProperties.TypeConverter.cs │ │ │ │ │ │ ├── BillingContainerProperties.cs │ │ │ │ │ │ ├── BillingContainerProperties.json.cs │ │ │ │ │ │ ├── DataPoint.PowerShell.cs │ │ │ │ │ │ ├── DataPoint.TypeConverter.cs │ │ │ │ │ │ ├── DataPoint.cs │ │ │ │ │ │ ├── DataPoint.json.cs │ │ │ │ │ │ ├── DataPointBase.PowerShell.cs │ │ │ │ │ │ ├── DataPointBase.TypeConverter.cs │ │ │ │ │ │ ├── DataPointBase.cs │ │ │ │ │ │ ├── DataPointBase.json.cs │ │ │ │ │ │ ├── Dataset.PowerShell.cs │ │ │ │ │ │ ├── Dataset.TypeConverter.cs │ │ │ │ │ │ ├── Dataset.cs │ │ │ │ │ │ ├── Dataset.json.cs │ │ │ │ │ │ ├── DeviceRegistryIdentity.PowerShell.cs │ │ │ │ │ │ ├── DeviceRegistryIdentity.TypeConverter.cs │ │ │ │ │ │ ├── DeviceRegistryIdentity.cs │ │ │ │ │ │ ├── DeviceRegistryIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Event.PowerShell.cs │ │ │ │ │ │ ├── Event.TypeConverter.cs │ │ │ │ │ │ ├── Event.cs │ │ │ │ │ │ ├── Event.json.cs │ │ │ │ │ │ ├── EventBase.PowerShell.cs │ │ │ │ │ │ ├── EventBase.TypeConverter.cs │ │ │ │ │ │ ├── EventBase.cs │ │ │ │ │ │ ├── EventBase.json.cs │ │ │ │ │ │ ├── ExtendedLocation.PowerShell.cs │ │ │ │ │ │ ├── ExtendedLocation.TypeConverter.cs │ │ │ │ │ │ ├── ExtendedLocation.cs │ │ │ │ │ │ ├── ExtendedLocation.json.cs │ │ │ │ │ │ ├── MessageSchemaReference.PowerShell.cs │ │ │ │ │ │ ├── MessageSchemaReference.TypeConverter.cs │ │ │ │ │ │ ├── MessageSchemaReference.cs │ │ │ │ │ │ ├── MessageSchemaReference.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationStatusResult.PowerShell.cs │ │ │ │ │ │ ├── OperationStatusResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationStatusResult.cs │ │ │ │ │ │ ├── OperationStatusResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── Topic.PowerShell.cs │ │ │ │ │ │ ├── Topic.TypeConverter.cs │ │ │ │ │ │ ├── Topic.cs │ │ │ │ │ │ ├── Topic.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UsernamePasswordCredentials.PowerShell.cs │ │ │ │ │ │ ├── UsernamePasswordCredentials.TypeConverter.cs │ │ │ │ │ │ ├── UsernamePasswordCredentials.cs │ │ │ │ │ │ ├── UsernamePasswordCredentials.json.cs │ │ │ │ │ │ ├── X509Credentials.PowerShell.cs │ │ │ │ │ │ ├── X509Credentials.TypeConverter.cs │ │ │ │ │ │ ├── X509Credentials.cs │ │ │ │ │ │ └── X509Credentials.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzDeviceRegistryAssetEndpointProfile_Get.cs │ │ │ │ │ ├── GetAzDeviceRegistryAssetEndpointProfile_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceRegistryAssetEndpointProfile_List.cs │ │ │ │ │ ├── GetAzDeviceRegistryAssetEndpointProfile_List1.cs │ │ │ │ │ ├── GetAzDeviceRegistryAsset_Get.cs │ │ │ │ │ ├── GetAzDeviceRegistryAsset_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceRegistryAsset_List.cs │ │ │ │ │ ├── GetAzDeviceRegistryAsset_List1.cs │ │ │ │ │ ├── GetAzDeviceRegistryBillingContainer_Get.cs │ │ │ │ │ ├── GetAzDeviceRegistryBillingContainer_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceRegistryBillingContainer_List.cs │ │ │ │ │ ├── GetAzDeviceRegistryOperationStatus_Get.cs │ │ │ │ │ ├── GetAzDeviceRegistryOperationStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDeviceRegistryOperationStatus_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzDeviceRegistryOperation_List.cs │ │ │ │ │ ├── NewAzDeviceRegistryAssetEndpointProfile_CreateExpanded.cs │ │ │ │ │ ├── NewAzDeviceRegistryAssetEndpointProfile_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzDeviceRegistryAssetEndpointProfile_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDeviceRegistryAssetEndpointProfile_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzDeviceRegistryAsset_CreateExpanded.cs │ │ │ │ │ ├── NewAzDeviceRegistryAsset_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzDeviceRegistryAsset_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDeviceRegistryAsset_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzDeviceRegistryAssetEndpointProfile_Delete.cs │ │ │ │ │ ├── RemoveAzDeviceRegistryAssetEndpointProfile_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzDeviceRegistryAsset_Delete.cs │ │ │ │ │ ├── RemoveAzDeviceRegistryAsset_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzDeviceRegistryAssetEndpointProfile_Replace.cs │ │ │ │ │ ├── SetAzDeviceRegistryAssetEndpointProfile_ReplaceExpanded.cs │ │ │ │ │ ├── SetAzDeviceRegistryAssetEndpointProfile_ReplaceViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDeviceRegistryAssetEndpointProfile_ReplaceViaJsonString.cs │ │ │ │ │ ├── SetAzDeviceRegistryAsset_Replace.cs │ │ │ │ │ ├── SetAzDeviceRegistryAsset_ReplaceExpanded.cs │ │ │ │ │ ├── SetAzDeviceRegistryAsset_ReplaceViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDeviceRegistryAsset_ReplaceViaJsonString.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAssetEndpointProfile_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAssetEndpointProfile_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAssetEndpointProfile_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAssetEndpointProfile_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAsset_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAsset_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzDeviceRegistryAsset_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzDeviceRegistryAsset_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.DeviceRegistry.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── DocumentDB.MongoCluster.Management │ │ ├── FirewallRule.tsp │ │ ├── MongoCluster.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── README.md │ │ ├── Replica.tsp │ │ ├── client.tsp │ │ ├── common.tsp │ │ ├── examples │ │ │ ├── 2024-03-01-preview │ │ │ │ ├── MongoClusters_Create.json │ │ │ │ ├── MongoClusters_CreatePITR.json │ │ │ │ ├── MongoClusters_Delete.json │ │ │ │ ├── MongoClusters_FirewallRuleCreate.json │ │ │ │ ├── MongoClusters_FirewallRuleDelete.json │ │ │ │ ├── MongoClusters_FirewallRuleGet.json │ │ │ │ ├── MongoClusters_FirewallRuleList.json │ │ │ │ ├── MongoClusters_Get.json │ │ │ │ ├── MongoClusters_List.json │ │ │ │ ├── MongoClusters_ListByResourceGroup.json │ │ │ │ ├── MongoClusters_ListConnectionStrings.json │ │ │ │ ├── MongoClusters_NameAvailability.json │ │ │ │ ├── MongoClusters_NameAvailability_AlreadyExists.json │ │ │ │ ├── MongoClusters_PatchDiskSize.json │ │ │ │ ├── MongoClusters_PatchPrivateNetworkAccess.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionDelete.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionGet.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionList.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionPut.json │ │ │ │ ├── MongoClusters_PrivateLinkResourceList.json │ │ │ │ ├── MongoClusters_Update.json │ │ │ │ └── Operations_List.json │ │ │ ├── 2024-06-01-preview │ │ │ │ ├── MongoClusters_Create.json │ │ │ │ ├── MongoClusters_CreateGeoReplica.json │ │ │ │ ├── MongoClusters_CreatePITR.json │ │ │ │ ├── MongoClusters_Delete.json │ │ │ │ ├── MongoClusters_FirewallRuleCreate.json │ │ │ │ ├── MongoClusters_FirewallRuleDelete.json │ │ │ │ ├── MongoClusters_FirewallRuleGet.json │ │ │ │ ├── MongoClusters_FirewallRuleList.json │ │ │ │ ├── MongoClusters_ForcePromoteReplica.json │ │ │ │ ├── MongoClusters_Get.json │ │ │ │ ├── MongoClusters_List.json │ │ │ │ ├── MongoClusters_ListByResourceGroup.json │ │ │ │ ├── MongoClusters_ListConnectionStrings.json │ │ │ │ ├── MongoClusters_NameAvailability.json │ │ │ │ ├── MongoClusters_NameAvailability_AlreadyExists.json │ │ │ │ ├── MongoClusters_PatchDiskSize.json │ │ │ │ ├── MongoClusters_PatchPrivateNetworkAccess.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionDelete.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionGet.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionList.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionPut.json │ │ │ │ ├── MongoClusters_PrivateLinkResourceList.json │ │ │ │ ├── MongoClusters_ReplicaList.json │ │ │ │ ├── MongoClusters_ResetPassword.json │ │ │ │ ├── MongoClusters_Update.json │ │ │ │ └── Operations_List.json │ │ │ └── 2024-07-01 │ │ │ │ ├── MongoClusters_Create.json │ │ │ │ ├── MongoClusters_CreateGeoReplica.json │ │ │ │ ├── MongoClusters_CreatePITR.json │ │ │ │ ├── MongoClusters_Delete.json │ │ │ │ ├── MongoClusters_FirewallRuleCreate.json │ │ │ │ ├── MongoClusters_FirewallRuleDelete.json │ │ │ │ ├── MongoClusters_FirewallRuleGet.json │ │ │ │ ├── MongoClusters_FirewallRuleList.json │ │ │ │ ├── MongoClusters_ForcePromoteReplica.json │ │ │ │ ├── MongoClusters_Get.json │ │ │ │ ├── MongoClusters_List.json │ │ │ │ ├── MongoClusters_ListByResourceGroup.json │ │ │ │ ├── MongoClusters_ListConnectionStrings.json │ │ │ │ ├── MongoClusters_NameAvailability.json │ │ │ │ ├── MongoClusters_NameAvailability_AlreadyExists.json │ │ │ │ ├── MongoClusters_PatchDiskSize.json │ │ │ │ ├── MongoClusters_PatchPrivateNetworkAccess.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionDelete.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionGet.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionList.json │ │ │ │ ├── MongoClusters_PrivateEndpointConnectionPut.json │ │ │ │ ├── MongoClusters_PrivateLinkResourceList.json │ │ │ │ ├── MongoClusters_ReplicaList.json │ │ │ │ ├── MongoClusters_ResetPassword.json │ │ │ │ ├── MongoClusters_Update.json │ │ │ │ └── Operations_List.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.MongoCluster.csproj │ │ │ ├── Az.MongoCluster.nuspec │ │ │ ├── Az.MongoCluster.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.MongoCluster.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── AdministratorProperties.PowerShell.cs │ │ │ │ │ │ ├── AdministratorProperties.TypeConverter.cs │ │ │ │ │ │ ├── AdministratorProperties.cs │ │ │ │ │ │ ├── AdministratorProperties.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── BackupProperties.PowerShell.cs │ │ │ │ │ │ ├── BackupProperties.TypeConverter.cs │ │ │ │ │ │ ├── BackupProperties.cs │ │ │ │ │ │ ├── BackupProperties.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.json.cs │ │ │ │ │ │ ├── ComputeProperties.PowerShell.cs │ │ │ │ │ │ ├── ComputeProperties.TypeConverter.cs │ │ │ │ │ │ ├── ComputeProperties.cs │ │ │ │ │ │ ├── ComputeProperties.json.cs │ │ │ │ │ │ ├── ConnectionString.PowerShell.cs │ │ │ │ │ │ ├── ConnectionString.TypeConverter.cs │ │ │ │ │ │ ├── ConnectionString.cs │ │ │ │ │ │ ├── ConnectionString.json.cs │ │ │ │ │ │ ├── DataApiProperties.PowerShell.cs │ │ │ │ │ │ ├── DataApiProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataApiProperties.cs │ │ │ │ │ │ ├── DataApiProperties.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── FirewallRule.PowerShell.cs │ │ │ │ │ │ ├── FirewallRule.TypeConverter.cs │ │ │ │ │ │ ├── FirewallRule.cs │ │ │ │ │ │ ├── FirewallRule.json.cs │ │ │ │ │ │ ├── FirewallRuleListResult.PowerShell.cs │ │ │ │ │ │ ├── FirewallRuleListResult.TypeConverter.cs │ │ │ │ │ │ ├── FirewallRuleListResult.cs │ │ │ │ │ │ ├── FirewallRuleListResult.json.cs │ │ │ │ │ │ ├── FirewallRuleProperties.PowerShell.cs │ │ │ │ │ │ ├── FirewallRuleProperties.TypeConverter.cs │ │ │ │ │ │ ├── FirewallRuleProperties.cs │ │ │ │ │ │ ├── FirewallRuleProperties.json.cs │ │ │ │ │ │ ├── FirewallRulesCreateOrUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── FirewallRulesCreateOrUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── FirewallRulesCreateOrUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── FirewallRulesCreateOrUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── FirewallRulesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── FirewallRulesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── FirewallRulesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── FirewallRulesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── HighAvailabilityProperties.PowerShell.cs │ │ │ │ │ │ ├── HighAvailabilityProperties.TypeConverter.cs │ │ │ │ │ │ ├── HighAvailabilityProperties.cs │ │ │ │ │ │ ├── HighAvailabilityProperties.json.cs │ │ │ │ │ │ ├── ListConnectionStringsResult.PowerShell.cs │ │ │ │ │ │ ├── ListConnectionStringsResult.TypeConverter.cs │ │ │ │ │ │ ├── ListConnectionStringsResult.cs │ │ │ │ │ │ ├── ListConnectionStringsResult.json.cs │ │ │ │ │ │ ├── MongoCluster.PowerShell.cs │ │ │ │ │ │ ├── MongoCluster.TypeConverter.cs │ │ │ │ │ │ ├── MongoCluster.cs │ │ │ │ │ │ ├── MongoCluster.json.cs │ │ │ │ │ │ ├── MongoClusterIdentity.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterIdentity.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterIdentity.cs │ │ │ │ │ │ ├── MongoClusterIdentity.json.cs │ │ │ │ │ │ ├── MongoClusterListResult.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterListResult.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterListResult.cs │ │ │ │ │ │ ├── MongoClusterListResult.json.cs │ │ │ │ │ │ ├── MongoClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterProperties.cs │ │ │ │ │ │ ├── MongoClusterProperties.json.cs │ │ │ │ │ │ ├── MongoClusterReplicaParameters.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterReplicaParameters.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterReplicaParameters.cs │ │ │ │ │ │ ├── MongoClusterReplicaParameters.json.cs │ │ │ │ │ │ ├── MongoClusterRestoreParameters.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterRestoreParameters.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterRestoreParameters.cs │ │ │ │ │ │ ├── MongoClusterRestoreParameters.json.cs │ │ │ │ │ │ ├── MongoClusterUpdate.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterUpdate.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterUpdate.cs │ │ │ │ │ │ ├── MongoClusterUpdate.json.cs │ │ │ │ │ │ ├── MongoClusterUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterUpdateProperties.cs │ │ │ │ │ │ ├── MongoClusterUpdateProperties.json.cs │ │ │ │ │ │ ├── MongoClusterUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── MongoClusterUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── MongoClusterUpdateTags.cs │ │ │ │ │ │ ├── MongoClusterUpdateTags.dictionary.cs │ │ │ │ │ │ ├── MongoClusterUpdateTags.json.cs │ │ │ │ │ │ ├── MongoClustersDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── MongoClustersDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── MongoClustersDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── MongoClustersDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── MongoClustersPromoteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── MongoClustersPromoteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── MongoClustersPromoteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── MongoClustersPromoteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── MongoClustersUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── MongoClustersUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── MongoClustersUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── MongoClustersUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsCreateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsCreateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsCreateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsCreateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── PromoteReplicaRequest.PowerShell.cs │ │ │ │ │ │ ├── PromoteReplicaRequest.TypeConverter.cs │ │ │ │ │ │ ├── PromoteReplicaRequest.cs │ │ │ │ │ │ ├── PromoteReplicaRequest.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Replica.PowerShell.cs │ │ │ │ │ │ ├── Replica.TypeConverter.cs │ │ │ │ │ │ ├── Replica.cs │ │ │ │ │ │ ├── Replica.json.cs │ │ │ │ │ │ ├── ReplicaListResult.PowerShell.cs │ │ │ │ │ │ ├── ReplicaListResult.TypeConverter.cs │ │ │ │ │ │ ├── ReplicaListResult.cs │ │ │ │ │ │ ├── ReplicaListResult.json.cs │ │ │ │ │ │ ├── ReplicationProperties.PowerShell.cs │ │ │ │ │ │ ├── ReplicationProperties.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationProperties.cs │ │ │ │ │ │ ├── ReplicationProperties.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ShardingProperties.PowerShell.cs │ │ │ │ │ │ ├── ShardingProperties.TypeConverter.cs │ │ │ │ │ │ ├── ShardingProperties.cs │ │ │ │ │ │ ├── ShardingProperties.json.cs │ │ │ │ │ │ ├── StorageProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageProperties.cs │ │ │ │ │ │ ├── StorageProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ └── TrackedResourceTags.json.cs │ │ │ │ │ └── MongoClusterManagementClient.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzMongoClusterConnectionString_List.cs │ │ │ │ │ ├── GetAzMongoClusterFirewallRule_Get.cs │ │ │ │ │ ├── GetAzMongoClusterFirewallRule_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMongoClusterFirewallRule_GetViaIdentityMongoCluster.cs │ │ │ │ │ ├── GetAzMongoClusterFirewallRule_List.cs │ │ │ │ │ ├── GetAzMongoClusterOperation_List.cs │ │ │ │ │ ├── GetAzMongoClusterPrivateLink_List.cs │ │ │ │ │ ├── GetAzMongoClusterReplica_List.cs │ │ │ │ │ ├── GetAzMongoCluster_Get.cs │ │ │ │ │ ├── GetAzMongoCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzMongoCluster_List.cs │ │ │ │ │ ├── GetAzMongoCluster_List1.cs │ │ │ │ │ ├── InvokeAzMongoClusterPromoteMongoCluster_Promote.cs │ │ │ │ │ ├── InvokeAzMongoClusterPromoteMongoCluster_PromoteExpanded.cs │ │ │ │ │ ├── InvokeAzMongoClusterPromoteMongoCluster_PromoteViaIdentity.cs │ │ │ │ │ ├── InvokeAzMongoClusterPromoteMongoCluster_PromoteViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzMongoClusterPromoteMongoCluster_PromoteViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzMongoClusterPromoteMongoCluster_PromoteViaJsonString.cs │ │ │ │ │ ├── NewAzMongoClusterFirewallRule_CreateExpanded.cs │ │ │ │ │ ├── NewAzMongoClusterFirewallRule_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzMongoClusterFirewallRule_CreateViaIdentityMongoClusterExpanded.cs │ │ │ │ │ ├── NewAzMongoClusterFirewallRule_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzMongoClusterFirewallRule_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzMongoCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzMongoCluster_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzMongoCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzMongoCluster_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzMongoClusterFirewallRule_Delete.cs │ │ │ │ │ ├── RemoveAzMongoClusterFirewallRule_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzMongoClusterFirewallRule_DeleteViaIdentityMongoCluster.cs │ │ │ │ │ ├── RemoveAzMongoCluster_Delete.cs │ │ │ │ │ ├── RemoveAzMongoCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzMongoClusterFirewallRule_UpdateExpanded.cs │ │ │ │ │ ├── SetAzMongoClusterFirewallRule_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzMongoClusterFirewallRule_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzMongoCluster_UpdateExpanded.cs │ │ │ │ │ ├── SetAzMongoCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzMongoCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── TestAzMongoClusterNameAvailability_Check.cs │ │ │ │ │ ├── TestAzMongoClusterNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzMongoClusterNameAvailability_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzMongoClusterNameAvailability_CheckViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzMongoClusterNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzMongoClusterNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzMongoClusterFirewallRule_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzMongoClusterFirewallRule_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzMongoClusterFirewallRule_UpdateViaIdentityMongoClusterExpanded.cs │ │ │ │ │ ├── UpdateAzMongoCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzMongoCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzMongoCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzMongoCluster_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.MongoCluster.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── EdgeZones.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-04-01-preview │ │ │ │ ├── ExtendedZones_Get.json │ │ │ │ ├── ExtendedZones_ListBySubscription.json │ │ │ │ ├── ExtendedZones_Register.json │ │ │ │ ├── ExtendedZones_Unregister.json │ │ │ │ └── Operations_List.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.EdgeZones.csproj │ │ │ ├── Az.EdgeZones.nuspec │ │ │ ├── Az.EdgeZones.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.EdgeZones.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftEdgeZones.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── EdgeZonesIdentity.PowerShell.cs │ │ │ │ │ │ ├── EdgeZonesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── EdgeZonesIdentity.cs │ │ │ │ │ │ ├── EdgeZonesIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExtendedZone.PowerShell.cs │ │ │ │ │ │ ├── ExtendedZone.TypeConverter.cs │ │ │ │ │ │ ├── ExtendedZone.cs │ │ │ │ │ │ ├── ExtendedZone.json.cs │ │ │ │ │ │ ├── ExtendedZoneListResult.PowerShell.cs │ │ │ │ │ │ ├── ExtendedZoneListResult.TypeConverter.cs │ │ │ │ │ │ ├── ExtendedZoneListResult.cs │ │ │ │ │ │ ├── ExtendedZoneListResult.json.cs │ │ │ │ │ │ ├── ExtendedZoneProperties.PowerShell.cs │ │ │ │ │ │ ├── ExtendedZoneProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExtendedZoneProperties.cs │ │ │ │ │ │ ├── ExtendedZoneProperties.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ └── SystemData.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzEdgeZonesExtendedZone_Get.cs │ │ │ │ │ ├── GetAzEdgeZonesExtendedZone_GetViaIdentity.cs │ │ │ │ │ ├── GetAzEdgeZonesExtendedZone_List.cs │ │ │ │ │ ├── GetAzEdgeZonesOperation_List.cs │ │ │ │ │ ├── RegisterAzEdgeZonesExtendedZone_Register.cs │ │ │ │ │ ├── RegisterAzEdgeZonesExtendedZone_RegisterViaIdentity.cs │ │ │ │ │ ├── UnregisterAzEdgeZonesExtendedZone_Unregister.cs │ │ │ │ │ └── UnregisterAzEdgeZonesExtendedZone_UnregisterViaIdentity.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.EdgeZones.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── ElasticSan.brown │ │ ├── ElasticSan.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── Snapshot.tsp │ │ ├── Volume.tsp │ │ ├── VolumeGroup.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── readme.az.md │ │ ├── readme.cli.md │ │ ├── readme.go.md │ │ ├── readme.md │ │ ├── readme.python.md │ │ ├── readme.typescript.md │ │ ├── routes.tsp │ │ ├── suppressions.yaml │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.ElasticSan.csproj │ │ │ ├── Az.ElasticSan.nuspec │ │ │ ├── Az.ElasticSan.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.ElasticSan.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── ElasticSanManagement.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AutoScaleProperties.PowerShell.cs │ │ │ │ │ │ ├── AutoScaleProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutoScaleProperties.cs │ │ │ │ │ │ ├── AutoScaleProperties.json.cs │ │ │ │ │ │ ├── DeleteRetentionPolicy.PowerShell.cs │ │ │ │ │ │ ├── DeleteRetentionPolicy.TypeConverter.cs │ │ │ │ │ │ ├── DeleteRetentionPolicy.cs │ │ │ │ │ │ ├── DeleteRetentionPolicy.json.cs │ │ │ │ │ │ ├── DiskSnapshotList.PowerShell.cs │ │ │ │ │ │ ├── DiskSnapshotList.TypeConverter.cs │ │ │ │ │ │ ├── DiskSnapshotList.cs │ │ │ │ │ │ ├── DiskSnapshotList.json.cs │ │ │ │ │ │ ├── ElasticSan.PowerShell.cs │ │ │ │ │ │ ├── ElasticSan.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSan.cs │ │ │ │ │ │ ├── ElasticSan.json.cs │ │ │ │ │ │ ├── ElasticSanIdentity.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanIdentity.cs │ │ │ │ │ │ ├── ElasticSanIdentity.json.cs │ │ │ │ │ │ ├── ElasticSanList.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanList.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanList.cs │ │ │ │ │ │ ├── ElasticSanList.json.cs │ │ │ │ │ │ ├── ElasticSanProperties.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanProperties.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanProperties.cs │ │ │ │ │ │ ├── ElasticSanProperties.json.cs │ │ │ │ │ │ ├── ElasticSanUpdate.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanUpdate.cs │ │ │ │ │ │ ├── ElasticSanUpdate.json.cs │ │ │ │ │ │ ├── ElasticSanUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanUpdateProperties.cs │ │ │ │ │ │ ├── ElasticSanUpdateProperties.json.cs │ │ │ │ │ │ ├── ElasticSanUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanUpdateTags.cs │ │ │ │ │ │ ├── ElasticSanUpdateTags.dictionary.cs │ │ │ │ │ │ ├── ElasticSanUpdateTags.json.cs │ │ │ │ │ │ ├── EncryptionIdentity.PowerShell.cs │ │ │ │ │ │ ├── EncryptionIdentity.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionIdentity.cs │ │ │ │ │ │ ├── EncryptionIdentity.json.cs │ │ │ │ │ │ ├── EncryptionProperties.PowerShell.cs │ │ │ │ │ │ ├── EncryptionProperties.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionProperties.cs │ │ │ │ │ │ ├── EncryptionProperties.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Identity.PowerShell.cs │ │ │ │ │ │ ├── Identity.TypeConverter.cs │ │ │ │ │ │ ├── Identity.cs │ │ │ │ │ │ ├── Identity.json.cs │ │ │ │ │ │ ├── IdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── IdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── IdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── IdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── IdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── IscsiTargetInfo.PowerShell.cs │ │ │ │ │ │ ├── IscsiTargetInfo.TypeConverter.cs │ │ │ │ │ │ ├── IscsiTargetInfo.cs │ │ │ │ │ │ ├── IscsiTargetInfo.json.cs │ │ │ │ │ │ ├── KeyVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── KeyVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── KeyVaultProperties.cs │ │ │ │ │ │ ├── KeyVaultProperties.json.cs │ │ │ │ │ │ ├── ManagedByInfo.PowerShell.cs │ │ │ │ │ │ ├── ManagedByInfo.TypeConverter.cs │ │ │ │ │ │ ├── ManagedByInfo.cs │ │ │ │ │ │ ├── ManagedByInfo.json.cs │ │ │ │ │ │ ├── NetworkRuleSet.PowerShell.cs │ │ │ │ │ │ ├── NetworkRuleSet.TypeConverter.cs │ │ │ │ │ │ ├── NetworkRuleSet.cs │ │ │ │ │ │ ├── NetworkRuleSet.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PreValidationResponse.PowerShell.cs │ │ │ │ │ │ ├── PreValidationResponse.TypeConverter.cs │ │ │ │ │ │ ├── PreValidationResponse.cs │ │ │ │ │ │ ├── PreValidationResponse.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ScaleUpProperties.PowerShell.cs │ │ │ │ │ │ ├── ScaleUpProperties.TypeConverter.cs │ │ │ │ │ │ ├── ScaleUpProperties.cs │ │ │ │ │ │ ├── ScaleUpProperties.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── SkuCapability.PowerShell.cs │ │ │ │ │ │ ├── SkuCapability.TypeConverter.cs │ │ │ │ │ │ ├── SkuCapability.cs │ │ │ │ │ │ ├── SkuCapability.json.cs │ │ │ │ │ │ ├── SkuInformation.PowerShell.cs │ │ │ │ │ │ ├── SkuInformation.TypeConverter.cs │ │ │ │ │ │ ├── SkuInformation.cs │ │ │ │ │ │ ├── SkuInformation.json.cs │ │ │ │ │ │ ├── SkuInformationList.PowerShell.cs │ │ │ │ │ │ ├── SkuInformationList.TypeConverter.cs │ │ │ │ │ │ ├── SkuInformationList.cs │ │ │ │ │ │ ├── SkuInformationList.json.cs │ │ │ │ │ │ ├── SkuLocationInfo.PowerShell.cs │ │ │ │ │ │ ├── SkuLocationInfo.TypeConverter.cs │ │ │ │ │ │ ├── SkuLocationInfo.cs │ │ │ │ │ │ ├── SkuLocationInfo.json.cs │ │ │ │ │ │ ├── Snapshot.PowerShell.cs │ │ │ │ │ │ ├── Snapshot.TypeConverter.cs │ │ │ │ │ │ ├── Snapshot.cs │ │ │ │ │ │ ├── Snapshot.json.cs │ │ │ │ │ │ ├── SnapshotCreationData.PowerShell.cs │ │ │ │ │ │ ├── SnapshotCreationData.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotCreationData.cs │ │ │ │ │ │ ├── SnapshotCreationData.json.cs │ │ │ │ │ │ ├── SnapshotList.PowerShell.cs │ │ │ │ │ │ ├── SnapshotList.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotList.cs │ │ │ │ │ │ ├── SnapshotList.json.cs │ │ │ │ │ │ ├── SnapshotProperties.PowerShell.cs │ │ │ │ │ │ ├── SnapshotProperties.TypeConverter.cs │ │ │ │ │ │ ├── SnapshotProperties.cs │ │ │ │ │ │ ├── SnapshotProperties.json.cs │ │ │ │ │ │ ├── SourceCreationData.PowerShell.cs │ │ │ │ │ │ ├── SourceCreationData.TypeConverter.cs │ │ │ │ │ │ ├── SourceCreationData.cs │ │ │ │ │ │ ├── SourceCreationData.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VirtualNetworkRule.PowerShell.cs │ │ │ │ │ │ ├── VirtualNetworkRule.TypeConverter.cs │ │ │ │ │ │ ├── VirtualNetworkRule.cs │ │ │ │ │ │ ├── VirtualNetworkRule.json.cs │ │ │ │ │ │ ├── Volume.PowerShell.cs │ │ │ │ │ │ ├── Volume.TypeConverter.cs │ │ │ │ │ │ ├── Volume.cs │ │ │ │ │ │ ├── Volume.json.cs │ │ │ │ │ │ ├── VolumeGroup.PowerShell.cs │ │ │ │ │ │ ├── VolumeGroup.TypeConverter.cs │ │ │ │ │ │ ├── VolumeGroup.cs │ │ │ │ │ │ ├── VolumeGroup.json.cs │ │ │ │ │ │ ├── VolumeGroupList.PowerShell.cs │ │ │ │ │ │ ├── VolumeGroupList.TypeConverter.cs │ │ │ │ │ │ ├── VolumeGroupList.cs │ │ │ │ │ │ ├── VolumeGroupList.json.cs │ │ │ │ │ │ ├── VolumeGroupProperties.PowerShell.cs │ │ │ │ │ │ ├── VolumeGroupProperties.TypeConverter.cs │ │ │ │ │ │ ├── VolumeGroupProperties.cs │ │ │ │ │ │ ├── VolumeGroupProperties.json.cs │ │ │ │ │ │ ├── VolumeGroupUpdate.PowerShell.cs │ │ │ │ │ │ ├── VolumeGroupUpdate.TypeConverter.cs │ │ │ │ │ │ ├── VolumeGroupUpdate.cs │ │ │ │ │ │ ├── VolumeGroupUpdate.json.cs │ │ │ │ │ │ ├── VolumeGroupUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── VolumeGroupUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── VolumeGroupUpdateProperties.cs │ │ │ │ │ │ ├── VolumeGroupUpdateProperties.json.cs │ │ │ │ │ │ ├── VolumeList.PowerShell.cs │ │ │ │ │ │ ├── VolumeList.TypeConverter.cs │ │ │ │ │ │ ├── VolumeList.cs │ │ │ │ │ │ ├── VolumeList.json.cs │ │ │ │ │ │ ├── VolumeNameList.PowerShell.cs │ │ │ │ │ │ ├── VolumeNameList.TypeConverter.cs │ │ │ │ │ │ ├── VolumeNameList.cs │ │ │ │ │ │ ├── VolumeNameList.json.cs │ │ │ │ │ │ ├── VolumeProperties.PowerShell.cs │ │ │ │ │ │ ├── VolumeProperties.TypeConverter.cs │ │ │ │ │ │ ├── VolumeProperties.cs │ │ │ │ │ │ ├── VolumeProperties.json.cs │ │ │ │ │ │ ├── VolumeUpdate.PowerShell.cs │ │ │ │ │ │ ├── VolumeUpdate.TypeConverter.cs │ │ │ │ │ │ ├── VolumeUpdate.cs │ │ │ │ │ │ ├── VolumeUpdate.json.cs │ │ │ │ │ │ ├── VolumeUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── VolumeUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── VolumeUpdateProperties.cs │ │ │ │ │ │ └── VolumeUpdateProperties.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── BackupAzElasticSanVolumePre_Backup.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupExpanded.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupViaIdentity.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupViaIdentityElasticSan.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupViaIdentityElasticSanExpanded.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupViaIdentityExpanded.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupViaJsonFilePath.cs │ │ │ │ │ ├── BackupAzElasticSanVolumePre_BackupViaJsonString.cs │ │ │ │ │ ├── GetAzElasticSanOperation_List.cs │ │ │ │ │ ├── GetAzElasticSanSku_List.cs │ │ │ │ │ ├── GetAzElasticSanVolumeGroup_Get.cs │ │ │ │ │ ├── GetAzElasticSanVolumeGroup_GetViaIdentity.cs │ │ │ │ │ ├── GetAzElasticSanVolumeGroup_GetViaIdentityElasticSan.cs │ │ │ │ │ ├── GetAzElasticSanVolumeGroup_List.cs │ │ │ │ │ ├── GetAzElasticSanVolumeSnapshot_Get.cs │ │ │ │ │ ├── GetAzElasticSanVolumeSnapshot_GetViaIdentity.cs │ │ │ │ │ ├── GetAzElasticSanVolumeSnapshot_GetViaIdentityElasticSan.cs │ │ │ │ │ ├── GetAzElasticSanVolumeSnapshot_GetViaIdentityVolumegroup.cs │ │ │ │ │ ├── GetAzElasticSanVolumeSnapshot_List.cs │ │ │ │ │ ├── GetAzElasticSanVolume_Get.cs │ │ │ │ │ ├── GetAzElasticSanVolume_GetViaIdentity.cs │ │ │ │ │ ├── GetAzElasticSanVolume_GetViaIdentityElasticSan.cs │ │ │ │ │ ├── GetAzElasticSanVolume_GetViaIdentityVolumegroup.cs │ │ │ │ │ ├── GetAzElasticSanVolume_List.cs │ │ │ │ │ ├── GetAzElasticSan_Get.cs │ │ │ │ │ ├── GetAzElasticSan_GetViaIdentity.cs │ │ │ │ │ ├── GetAzElasticSan_List.cs │ │ │ │ │ ├── GetAzElasticSan_List1.cs │ │ │ │ │ ├── NewAzElasticSanVolumeGroup_CreateExpanded.cs │ │ │ │ │ ├── NewAzElasticSanVolumeGroup_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzElasticSanVolumeGroup_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzElasticSanVolumeSnapshot_CreateExpanded.cs │ │ │ │ │ ├── NewAzElasticSanVolumeSnapshot_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzElasticSanVolumeSnapshot_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzElasticSanVolume_CreateExpanded.cs │ │ │ │ │ ├── NewAzElasticSanVolume_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzElasticSanVolume_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzElasticSan_CreateExpanded.cs │ │ │ │ │ ├── NewAzElasticSan_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzElasticSan_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeGroup_Delete.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeGroup_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeGroup_DeleteViaIdentityElasticSan.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeSnapshot_Delete.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeSnapshot_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeSnapshot_DeleteViaIdentityElasticSan.cs │ │ │ │ │ ├── RemoveAzElasticSanVolumeSnapshot_DeleteViaIdentityVolumegroup.cs │ │ │ │ │ ├── RemoveAzElasticSanVolume_Delete.cs │ │ │ │ │ ├── RemoveAzElasticSanVolume_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzElasticSanVolume_DeleteViaIdentityElasticSan.cs │ │ │ │ │ ├── RemoveAzElasticSanVolume_DeleteViaIdentityVolumegroup.cs │ │ │ │ │ ├── RemoveAzElasticSan_Delete.cs │ │ │ │ │ ├── RemoveAzElasticSan_DeleteViaIdentity.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_Restore.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreExpanded.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreViaIdentity.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreViaIdentityElasticSan.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreViaIdentityElasticSanExpanded.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreViaIdentityExpanded.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreViaJsonFilePath.cs │ │ │ │ │ ├── RestoreAzElasticSanVolumePre_RestoreViaJsonString.cs │ │ │ │ │ ├── RestoreAzElasticSanVolume_Restore.cs │ │ │ │ │ ├── RestoreAzElasticSanVolume_RestoreViaIdentity.cs │ │ │ │ │ ├── RestoreAzElasticSanVolume_RestoreViaIdentityElasticSan.cs │ │ │ │ │ ├── RestoreAzElasticSanVolume_RestoreViaIdentityVolumegroup.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeGroup_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeGroup_UpdateViaIdentityElasticSanExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeGroup_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeSnapshot_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeSnapshot_UpdateViaIdentityElasticSanExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeSnapshot_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolumeSnapshot_UpdateViaIdentityVolumegroupExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolume_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolume_UpdateViaIdentityElasticSanExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolume_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolume_UpdateViaIdentityVolumegroupExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSanVolume_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzElasticSanVolume_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzElasticSan_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSan_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzElasticSan_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzElasticSan_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.ElasticSan.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── EmitterTest.ps1 │ ├── Fleet.Management.brown │ │ ├── README.md │ │ ├── client.tsp │ │ ├── fleet.tsp │ │ ├── fleetmember.tsp │ │ ├── gate.tsp │ │ ├── helpers.tsp │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.ContainerServiceFleet.csproj │ │ │ ├── Az.ContainerServiceFleet.nuspec │ │ │ ├── Az.ContainerServiceFleet.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.ContainerServiceFleet.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── ContainerServiceFleetClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AgentProfile.PowerShell.cs │ │ │ │ │ │ ├── AgentProfile.TypeConverter.cs │ │ │ │ │ │ ├── AgentProfile.cs │ │ │ │ │ │ ├── AgentProfile.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApiServerAccessProfile.PowerShell.cs │ │ │ │ │ │ ├── ApiServerAccessProfile.TypeConverter.cs │ │ │ │ │ │ ├── ApiServerAccessProfile.cs │ │ │ │ │ │ ├── ApiServerAccessProfile.json.cs │ │ │ │ │ │ ├── AutoUpgradeNodeImageSelection.PowerShell.cs │ │ │ │ │ │ ├── AutoUpgradeNodeImageSelection.TypeConverter.cs │ │ │ │ │ │ ├── AutoUpgradeNodeImageSelection.cs │ │ │ │ │ │ ├── AutoUpgradeNodeImageSelection.json.cs │ │ │ │ │ │ ├── AutoUpgradeProfile.PowerShell.cs │ │ │ │ │ │ ├── AutoUpgradeProfile.TypeConverter.cs │ │ │ │ │ │ ├── AutoUpgradeProfile.cs │ │ │ │ │ │ ├── AutoUpgradeProfile.json.cs │ │ │ │ │ │ ├── AutoUpgradeProfileListResult.PowerShell.cs │ │ │ │ │ │ ├── AutoUpgradeProfileListResult.TypeConverter.cs │ │ │ │ │ │ ├── AutoUpgradeProfileListResult.cs │ │ │ │ │ │ ├── AutoUpgradeProfileListResult.json.cs │ │ │ │ │ │ ├── AutoUpgradeProfileOperationsGenerateUpdateRunAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── AutoUpgradeProfileOperationsGenerateUpdateRunAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── AutoUpgradeProfileOperationsGenerateUpdateRunAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── AutoUpgradeProfileOperationsGenerateUpdateRunAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── AutoUpgradeProfileProperties.PowerShell.cs │ │ │ │ │ │ ├── AutoUpgradeProfileProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutoUpgradeProfileProperties.cs │ │ │ │ │ │ ├── AutoUpgradeProfileProperties.json.cs │ │ │ │ │ │ ├── AutoUpgradeProfileStatus.PowerShell.cs │ │ │ │ │ │ ├── AutoUpgradeProfileStatus.TypeConverter.cs │ │ │ │ │ │ ├── AutoUpgradeProfileStatus.cs │ │ │ │ │ │ ├── AutoUpgradeProfileStatus.json.cs │ │ │ │ │ │ ├── ContainerServiceFleetIdentity.PowerShell.cs │ │ │ │ │ │ ├── ContainerServiceFleetIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ContainerServiceFleetIdentity.cs │ │ │ │ │ │ ├── ContainerServiceFleetIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Fleet.PowerShell.cs │ │ │ │ │ │ ├── Fleet.TypeConverter.cs │ │ │ │ │ │ ├── Fleet.cs │ │ │ │ │ │ ├── Fleet.json.cs │ │ │ │ │ │ ├── FleetCredentialResult.PowerShell.cs │ │ │ │ │ │ ├── FleetCredentialResult.TypeConverter.cs │ │ │ │ │ │ ├── FleetCredentialResult.cs │ │ │ │ │ │ ├── FleetCredentialResult.json.cs │ │ │ │ │ │ ├── FleetCredentialResults.PowerShell.cs │ │ │ │ │ │ ├── FleetCredentialResults.TypeConverter.cs │ │ │ │ │ │ ├── FleetCredentialResults.cs │ │ │ │ │ │ ├── FleetCredentialResults.json.cs │ │ │ │ │ │ ├── FleetHubProfile.PowerShell.cs │ │ │ │ │ │ ├── FleetHubProfile.TypeConverter.cs │ │ │ │ │ │ ├── FleetHubProfile.cs │ │ │ │ │ │ ├── FleetHubProfile.json.cs │ │ │ │ │ │ ├── FleetListResult.PowerShell.cs │ │ │ │ │ │ ├── FleetListResult.TypeConverter.cs │ │ │ │ │ │ ├── FleetListResult.cs │ │ │ │ │ │ ├── FleetListResult.json.cs │ │ │ │ │ │ ├── FleetMember.PowerShell.cs │ │ │ │ │ │ ├── FleetMember.TypeConverter.cs │ │ │ │ │ │ ├── FleetMember.cs │ │ │ │ │ │ ├── FleetMember.json.cs │ │ │ │ │ │ ├── FleetMemberListResult.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberListResult.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberListResult.cs │ │ │ │ │ │ ├── FleetMemberListResult.json.cs │ │ │ │ │ │ ├── FleetMemberProperties.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberProperties.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberProperties.cs │ │ │ │ │ │ ├── FleetMemberProperties.json.cs │ │ │ │ │ │ ├── FleetMemberPropertiesLabels.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberPropertiesLabels.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberPropertiesLabels.cs │ │ │ │ │ │ ├── FleetMemberPropertiesLabels.dictionary.cs │ │ │ │ │ │ ├── FleetMemberPropertiesLabels.json.cs │ │ │ │ │ │ ├── FleetMemberStatus.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberStatus.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberStatus.cs │ │ │ │ │ │ ├── FleetMemberStatus.json.cs │ │ │ │ │ │ ├── FleetMemberUpdate.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberUpdate.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberUpdate.cs │ │ │ │ │ │ ├── FleetMemberUpdate.json.cs │ │ │ │ │ │ ├── FleetMemberUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberUpdateProperties.cs │ │ │ │ │ │ ├── FleetMemberUpdateProperties.json.cs │ │ │ │ │ │ ├── FleetMemberUpdatePropertiesLabels.PowerShell.cs │ │ │ │ │ │ ├── FleetMemberUpdatePropertiesLabels.TypeConverter.cs │ │ │ │ │ │ ├── FleetMemberUpdatePropertiesLabels.cs │ │ │ │ │ │ ├── FleetMemberUpdatePropertiesLabels.dictionary.cs │ │ │ │ │ │ ├── FleetMemberUpdatePropertiesLabels.json.cs │ │ │ │ │ │ ├── FleetPatch.PowerShell.cs │ │ │ │ │ │ ├── FleetPatch.TypeConverter.cs │ │ │ │ │ │ ├── FleetPatch.cs │ │ │ │ │ │ ├── FleetPatch.json.cs │ │ │ │ │ │ ├── FleetPatchTags.PowerShell.cs │ │ │ │ │ │ ├── FleetPatchTags.TypeConverter.cs │ │ │ │ │ │ ├── FleetPatchTags.cs │ │ │ │ │ │ ├── FleetPatchTags.dictionary.cs │ │ │ │ │ │ ├── FleetPatchTags.json.cs │ │ │ │ │ │ ├── FleetProperties.PowerShell.cs │ │ │ │ │ │ ├── FleetProperties.TypeConverter.cs │ │ │ │ │ │ ├── FleetProperties.cs │ │ │ │ │ │ ├── FleetProperties.json.cs │ │ │ │ │ │ ├── FleetStatus.PowerShell.cs │ │ │ │ │ │ ├── FleetStatus.TypeConverter.cs │ │ │ │ │ │ ├── FleetStatus.cs │ │ │ │ │ │ ├── FleetStatus.json.cs │ │ │ │ │ │ ├── FleetUpdateStrategy.PowerShell.cs │ │ │ │ │ │ ├── FleetUpdateStrategy.TypeConverter.cs │ │ │ │ │ │ ├── FleetUpdateStrategy.cs │ │ │ │ │ │ ├── FleetUpdateStrategy.json.cs │ │ │ │ │ │ ├── FleetUpdateStrategyListResult.PowerShell.cs │ │ │ │ │ │ ├── FleetUpdateStrategyListResult.TypeConverter.cs │ │ │ │ │ │ ├── FleetUpdateStrategyListResult.cs │ │ │ │ │ │ ├── FleetUpdateStrategyListResult.json.cs │ │ │ │ │ │ ├── FleetUpdateStrategyProperties.PowerShell.cs │ │ │ │ │ │ ├── FleetUpdateStrategyProperties.TypeConverter.cs │ │ │ │ │ │ ├── FleetUpdateStrategyProperties.cs │ │ │ │ │ │ ├── FleetUpdateStrategyProperties.json.cs │ │ │ │ │ │ ├── Gate.PowerShell.cs │ │ │ │ │ │ ├── Gate.TypeConverter.cs │ │ │ │ │ │ ├── Gate.cs │ │ │ │ │ │ ├── Gate.json.cs │ │ │ │ │ │ ├── GateConfiguration.PowerShell.cs │ │ │ │ │ │ ├── GateConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── GateConfiguration.cs │ │ │ │ │ │ ├── GateConfiguration.json.cs │ │ │ │ │ │ ├── GateListResult.PowerShell.cs │ │ │ │ │ │ ├── GateListResult.TypeConverter.cs │ │ │ │ │ │ ├── GateListResult.cs │ │ │ │ │ │ ├── GateListResult.json.cs │ │ │ │ │ │ ├── GatePatch.PowerShell.cs │ │ │ │ │ │ ├── GatePatch.TypeConverter.cs │ │ │ │ │ │ ├── GatePatch.cs │ │ │ │ │ │ ├── GatePatch.json.cs │ │ │ │ │ │ ├── GatePatchProperties.PowerShell.cs │ │ │ │ │ │ ├── GatePatchProperties.TypeConverter.cs │ │ │ │ │ │ ├── GatePatchProperties.cs │ │ │ │ │ │ ├── GatePatchProperties.json.cs │ │ │ │ │ │ ├── GateProperties.PowerShell.cs │ │ │ │ │ │ ├── GateProperties.TypeConverter.cs │ │ │ │ │ │ ├── GateProperties.cs │ │ │ │ │ │ ├── GateProperties.json.cs │ │ │ │ │ │ ├── GateTarget.PowerShell.cs │ │ │ │ │ │ ├── GateTarget.TypeConverter.cs │ │ │ │ │ │ ├── GateTarget.cs │ │ │ │ │ │ ├── GateTarget.json.cs │ │ │ │ │ │ ├── GenerateResponse.PowerShell.cs │ │ │ │ │ │ ├── GenerateResponse.TypeConverter.cs │ │ │ │ │ │ ├── GenerateResponse.cs │ │ │ │ │ │ ├── GenerateResponse.json.cs │ │ │ │ │ │ ├── ManagedClusterUpdate.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterUpdate.cs │ │ │ │ │ │ ├── ManagedClusterUpdate.json.cs │ │ │ │ │ │ ├── ManagedClusterUpgradeSpec.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterUpgradeSpec.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterUpgradeSpec.cs │ │ │ │ │ │ ├── ManagedClusterUpgradeSpec.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MemberUpdateStatus.PowerShell.cs │ │ │ │ │ │ ├── MemberUpdateStatus.TypeConverter.cs │ │ │ │ │ │ ├── MemberUpdateStatus.cs │ │ │ │ │ │ ├── MemberUpdateStatus.json.cs │ │ │ │ │ │ ├── NodeImageSelection.PowerShell.cs │ │ │ │ │ │ ├── NodeImageSelection.TypeConverter.cs │ │ │ │ │ │ ├── NodeImageSelection.cs │ │ │ │ │ │ ├── NodeImageSelection.json.cs │ │ │ │ │ │ ├── NodeImageSelectionStatus.PowerShell.cs │ │ │ │ │ │ ├── NodeImageSelectionStatus.TypeConverter.cs │ │ │ │ │ │ ├── NodeImageSelectionStatus.cs │ │ │ │ │ │ ├── NodeImageSelectionStatus.json.cs │ │ │ │ │ │ ├── NodeImageVersion.PowerShell.cs │ │ │ │ │ │ ├── NodeImageVersion.TypeConverter.cs │ │ │ │ │ │ ├── NodeImageVersion.cs │ │ │ │ │ │ ├── NodeImageVersion.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SkipProperties.PowerShell.cs │ │ │ │ │ │ ├── SkipProperties.TypeConverter.cs │ │ │ │ │ │ ├── SkipProperties.cs │ │ │ │ │ │ ├── SkipProperties.json.cs │ │ │ │ │ │ ├── SkipTarget.PowerShell.cs │ │ │ │ │ │ ├── SkipTarget.TypeConverter.cs │ │ │ │ │ │ ├── SkipTarget.cs │ │ │ │ │ │ ├── SkipTarget.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UpdateGroup.PowerShell.cs │ │ │ │ │ │ ├── UpdateGroup.TypeConverter.cs │ │ │ │ │ │ ├── UpdateGroup.cs │ │ │ │ │ │ ├── UpdateGroup.json.cs │ │ │ │ │ │ ├── UpdateGroupStatus.PowerShell.cs │ │ │ │ │ │ ├── UpdateGroupStatus.TypeConverter.cs │ │ │ │ │ │ ├── UpdateGroupStatus.cs │ │ │ │ │ │ ├── UpdateGroupStatus.json.cs │ │ │ │ │ │ ├── UpdateRun.PowerShell.cs │ │ │ │ │ │ ├── UpdateRun.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRun.cs │ │ │ │ │ │ ├── UpdateRun.json.cs │ │ │ │ │ │ ├── UpdateRunGateStatus.PowerShell.cs │ │ │ │ │ │ ├── UpdateRunGateStatus.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRunGateStatus.cs │ │ │ │ │ │ ├── UpdateRunGateStatus.json.cs │ │ │ │ │ │ ├── UpdateRunGateTargetProperties.PowerShell.cs │ │ │ │ │ │ ├── UpdateRunGateTargetProperties.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRunGateTargetProperties.cs │ │ │ │ │ │ ├── UpdateRunGateTargetProperties.json.cs │ │ │ │ │ │ ├── UpdateRunListResult.PowerShell.cs │ │ │ │ │ │ ├── UpdateRunListResult.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRunListResult.cs │ │ │ │ │ │ ├── UpdateRunListResult.json.cs │ │ │ │ │ │ ├── UpdateRunProperties.PowerShell.cs │ │ │ │ │ │ ├── UpdateRunProperties.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRunProperties.cs │ │ │ │ │ │ ├── UpdateRunProperties.json.cs │ │ │ │ │ │ ├── UpdateRunStatus.PowerShell.cs │ │ │ │ │ │ ├── UpdateRunStatus.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRunStatus.cs │ │ │ │ │ │ ├── UpdateRunStatus.json.cs │ │ │ │ │ │ ├── UpdateRunStrategy.PowerShell.cs │ │ │ │ │ │ ├── UpdateRunStrategy.TypeConverter.cs │ │ │ │ │ │ ├── UpdateRunStrategy.cs │ │ │ │ │ │ ├── UpdateRunStrategy.json.cs │ │ │ │ │ │ ├── UpdateStage.PowerShell.cs │ │ │ │ │ │ ├── UpdateStage.TypeConverter.cs │ │ │ │ │ │ ├── UpdateStage.cs │ │ │ │ │ │ ├── UpdateStage.json.cs │ │ │ │ │ │ ├── UpdateStageStatus.PowerShell.cs │ │ │ │ │ │ ├── UpdateStageStatus.TypeConverter.cs │ │ │ │ │ │ ├── UpdateStageStatus.cs │ │ │ │ │ │ ├── UpdateStageStatus.json.cs │ │ │ │ │ │ ├── UpdateStatus.PowerShell.cs │ │ │ │ │ │ ├── UpdateStatus.TypeConverter.cs │ │ │ │ │ │ ├── UpdateStatus.cs │ │ │ │ │ │ ├── UpdateStatus.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── WaitStatus.PowerShell.cs │ │ │ │ │ │ ├── WaitStatus.TypeConverter.cs │ │ │ │ │ │ ├── WaitStatus.cs │ │ │ │ │ │ └── WaitStatus.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzContainerServiceFleetAutoUpgradeProfile_Get.cs │ │ │ │ │ ├── GetAzContainerServiceFleetAutoUpgradeProfile_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerServiceFleetAutoUpgradeProfile_GetViaIdentityFleet.cs │ │ │ │ │ ├── GetAzContainerServiceFleetAutoUpgradeProfile_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleetCredentials_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleetGate_Get.cs │ │ │ │ │ ├── GetAzContainerServiceFleetGate_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerServiceFleetGate_GetViaIdentityFleet.cs │ │ │ │ │ ├── GetAzContainerServiceFleetGate_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleetMember_Get.cs │ │ │ │ │ ├── GetAzContainerServiceFleetMember_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerServiceFleetMember_GetViaIdentityFleet.cs │ │ │ │ │ ├── GetAzContainerServiceFleetMember_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleetOperation_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateRun_Get.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateRun_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateRun_GetViaIdentityFleet.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateRun_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateStrategy_Get.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateStrategy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateStrategy_GetViaIdentityFleet.cs │ │ │ │ │ ├── GetAzContainerServiceFleetUpdateStrategy_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleet_Get.cs │ │ │ │ │ ├── GetAzContainerServiceFleet_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerServiceFleet_List.cs │ │ │ │ │ ├── GetAzContainerServiceFleet_List1.cs │ │ │ │ │ ├── NewAzContainerServiceFleetAutoUpgradeProfileOperationUpdateRun_Generate.cs │ │ │ │ │ ├── NewAzContainerServiceFleetAutoUpgradeProfileOperationUpdateRun_GenerateViaIdentity.cs │ │ │ │ │ ├── NewAzContainerServiceFleetAutoUpgradeProfileOperationUpdateRun_GenerateViaIdentityFleet.cs │ │ │ │ │ ├── NewAzContainerServiceFleetAutoUpgradeProfile_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerServiceFleetAutoUpgradeProfile_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerServiceFleetAutoUpgradeProfile_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerServiceFleetMember_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerServiceFleetMember_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerServiceFleetMember_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerServiceFleetUpdateRun_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerServiceFleetUpdateRun_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerServiceFleetUpdateRun_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerServiceFleetUpdateStrategy_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerServiceFleetUpdateStrategy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerServiceFleetUpdateStrategy_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerServiceFleet_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerServiceFleet_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerServiceFleet_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetAutoUpgradeProfile_Delete.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetAutoUpgradeProfile_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetAutoUpgradeProfile_DeleteViaIdentityFleet.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetMember_Delete.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetMember_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetMember_DeleteViaIdentityFleet.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetUpdateRun_Delete.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetUpdateRun_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetUpdateRun_DeleteViaIdentityFleet.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetUpdateStrategy_Delete.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetUpdateStrategy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleetUpdateStrategy_DeleteViaIdentityFleet.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleet_Delete.cs │ │ │ │ │ ├── RemoveAzContainerServiceFleet_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzContainerServiceFleetAutoUpgradeProfile_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerServiceFleetAutoUpgradeProfile_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerServiceFleetAutoUpgradeProfile_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzContainerServiceFleetUpdateRun_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerServiceFleetUpdateRun_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerServiceFleetUpdateRun_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzContainerServiceFleetUpdateStrategy_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerServiceFleetUpdateStrategy_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerServiceFleetUpdateStrategy_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzContainerServiceFleet_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerServiceFleet_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerServiceFleet_UpdateViaJsonString.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_Skip.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipExpanded.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipViaIdentity.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipViaIdentityExpanded.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipViaIdentityFleet.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipViaIdentityFleetExpanded.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipViaJsonFilePath.cs │ │ │ │ │ ├── SkipAzContainerServiceFleetUpdateRun_SkipViaJsonString.cs │ │ │ │ │ ├── StartAzContainerServiceFleetUpdateRun_Start.cs │ │ │ │ │ ├── StartAzContainerServiceFleetUpdateRun_StartViaIdentity.cs │ │ │ │ │ ├── StartAzContainerServiceFleetUpdateRun_StartViaIdentityFleet.cs │ │ │ │ │ ├── StopAzContainerServiceFleetUpdateRun_Stop.cs │ │ │ │ │ ├── StopAzContainerServiceFleetUpdateRun_StopViaIdentity.cs │ │ │ │ │ ├── StopAzContainerServiceFleetUpdateRun_StopViaIdentityFleet.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetAutoUpgradeProfile_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetAutoUpgradeProfile_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetAutoUpgradeProfile_UpdateViaIdentityFleetExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetGate_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetGate_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetGate_UpdateViaIdentityFleetExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetGate_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetGate_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetMember_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetMember_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetMember_UpdateViaIdentityFleetExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetMember_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetMember_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetUpdateRun_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetUpdateRun_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetUpdateRun_UpdateViaIdentityFleetExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetUpdateStrategy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetUpdateStrategy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleetUpdateStrategy_UpdateViaIdentityFleetExpanded.cs │ │ │ │ │ ├── UpdateAzContainerServiceFleet_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzContainerServiceFleet_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.ContainerServiceFleet.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ ├── tspconfig.yaml │ │ └── update │ │ │ ├── autoupgradeprofile.tsp │ │ │ ├── common.tsp │ │ │ ├── run.tsp │ │ │ └── strategy.tsp │ ├── HardwareSecurityModules.Management.brown │ │ ├── CloudHsmCluster.tsp │ │ ├── DedicatedHsm.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Hsm.csproj │ │ │ ├── Az.Hsm.nuspec │ │ │ ├── Az.Hsm.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Hsm.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── HardwareSecurityModules.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApiEntityReference.PowerShell.cs │ │ │ │ │ │ ├── ApiEntityReference.TypeConverter.cs │ │ │ │ │ │ ├── ApiEntityReference.cs │ │ │ │ │ │ ├── ApiEntityReference.json.cs │ │ │ │ │ │ ├── BackupRequestProperties.PowerShell.cs │ │ │ │ │ │ ├── BackupRequestProperties.TypeConverter.cs │ │ │ │ │ │ ├── BackupRequestProperties.cs │ │ │ │ │ │ ├── BackupRequestProperties.json.cs │ │ │ │ │ │ ├── BackupRestoreBaseResultProperties.PowerShell.cs │ │ │ │ │ │ ├── BackupRestoreBaseResultProperties.TypeConverter.cs │ │ │ │ │ │ ├── BackupRestoreBaseResultProperties.cs │ │ │ │ │ │ ├── BackupRestoreBaseResultProperties.json.cs │ │ │ │ │ │ ├── BackupRestoreRequestBaseProperties.PowerShell.cs │ │ │ │ │ │ ├── BackupRestoreRequestBaseProperties.TypeConverter.cs │ │ │ │ │ │ ├── BackupRestoreRequestBaseProperties.cs │ │ │ │ │ │ ├── BackupRestoreRequestBaseProperties.json.cs │ │ │ │ │ │ ├── BackupResult.PowerShell.cs │ │ │ │ │ │ ├── BackupResult.TypeConverter.cs │ │ │ │ │ │ ├── BackupResult.cs │ │ │ │ │ │ ├── BackupResult.json.cs │ │ │ │ │ │ ├── BackupResultProperties.PowerShell.cs │ │ │ │ │ │ ├── BackupResultProperties.TypeConverter.cs │ │ │ │ │ │ ├── BackupResultProperties.cs │ │ │ │ │ │ ├── BackupResultProperties.json.cs │ │ │ │ │ │ ├── CloudHsmCluster.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmCluster.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmCluster.cs │ │ │ │ │ │ ├── CloudHsmCluster.json.cs │ │ │ │ │ │ ├── CloudHsmClusterBackupStatusGetAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterBackupStatusGetAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterBackupStatusGetAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CloudHsmClusterBackupStatusGetAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CloudHsmClusterListResult.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterListResult.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterListResult.cs │ │ │ │ │ │ ├── CloudHsmClusterListResult.json.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParameters.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParameters.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParameters.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParameters.json.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParametersTags.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParametersTags.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParametersTags.dictionary.cs │ │ │ │ │ │ ├── CloudHsmClusterPatchParametersTags.json.cs │ │ │ │ │ │ ├── CloudHsmClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterProperties.cs │ │ │ │ │ │ ├── CloudHsmClusterProperties.json.cs │ │ │ │ │ │ ├── CloudHsmClusterRestoreStatusGetAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterRestoreStatusGetAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterRestoreStatusGetAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CloudHsmClusterRestoreStatusGetAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CloudHsmClusterSku.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClusterSku.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClusterSku.cs │ │ │ │ │ │ ├── CloudHsmClusterSku.json.cs │ │ │ │ │ │ ├── CloudHsmClustersBackupAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClustersBackupAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClustersBackupAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CloudHsmClustersBackupAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CloudHsmClustersRestoreAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClustersRestoreAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClustersRestoreAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CloudHsmClustersRestoreAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateBackupPropertiesAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateBackupPropertiesAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateBackupPropertiesAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateBackupPropertiesAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateRestorePropertiesAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateRestorePropertiesAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateRestorePropertiesAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CloudHsmClustersValidateRestorePropertiesAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CloudHsmProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudHsmProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudHsmProperties.cs │ │ │ │ │ │ ├── CloudHsmProperties.json.cs │ │ │ │ │ │ ├── DedicatedHsm.PowerShell.cs │ │ │ │ │ │ ├── DedicatedHsm.TypeConverter.cs │ │ │ │ │ │ ├── DedicatedHsm.cs │ │ │ │ │ │ ├── DedicatedHsm.json.cs │ │ │ │ │ │ ├── DedicatedHsmError.PowerShell.cs │ │ │ │ │ │ ├── DedicatedHsmError.TypeConverter.cs │ │ │ │ │ │ ├── DedicatedHsmError.cs │ │ │ │ │ │ ├── DedicatedHsmError.json.cs │ │ │ │ │ │ ├── DedicatedHsmListResult.PowerShell.cs │ │ │ │ │ │ ├── DedicatedHsmListResult.TypeConverter.cs │ │ │ │ │ │ ├── DedicatedHsmListResult.cs │ │ │ │ │ │ ├── DedicatedHsmListResult.json.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParameters.PowerShell.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParameters.TypeConverter.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParameters.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParameters.json.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParametersTags.PowerShell.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParametersTags.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParametersTags.dictionary.cs │ │ │ │ │ │ ├── DedicatedHsmPatchParametersTags.json.cs │ │ │ │ │ │ ├── DedicatedHsmProperties.PowerShell.cs │ │ │ │ │ │ ├── DedicatedHsmProperties.TypeConverter.cs │ │ │ │ │ │ ├── DedicatedHsmProperties.cs │ │ │ │ │ │ ├── DedicatedHsmProperties.json.cs │ │ │ │ │ │ ├── EndpointDependency.PowerShell.cs │ │ │ │ │ │ ├── EndpointDependency.TypeConverter.cs │ │ │ │ │ │ ├── EndpointDependency.cs │ │ │ │ │ │ ├── EndpointDependency.json.cs │ │ │ │ │ │ ├── EndpointDetail.PowerShell.cs │ │ │ │ │ │ ├── EndpointDetail.TypeConverter.cs │ │ │ │ │ │ ├── EndpointDetail.cs │ │ │ │ │ │ ├── EndpointDetail.json.cs │ │ │ │ │ │ ├── Error.PowerShell.cs │ │ │ │ │ │ ├── Error.TypeConverter.cs │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── HsmIdentity.PowerShell.cs │ │ │ │ │ │ ├── HsmIdentity.TypeConverter.cs │ │ │ │ │ │ ├── HsmIdentity.cs │ │ │ │ │ │ ├── HsmIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── NetworkInterface.PowerShell.cs │ │ │ │ │ │ ├── NetworkInterface.TypeConverter.cs │ │ │ │ │ │ ├── NetworkInterface.cs │ │ │ │ │ │ ├── NetworkInterface.json.cs │ │ │ │ │ │ ├── NetworkProfile.PowerShell.cs │ │ │ │ │ │ ├── NetworkProfile.TypeConverter.cs │ │ │ │ │ │ ├── NetworkProfile.cs │ │ │ │ │ │ ├── NetworkProfile.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpoint.PowerShell.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpoint.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpoint.json.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpointCollection.PowerShell.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpointCollection.TypeConverter.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpointCollection.cs │ │ │ │ │ │ ├── OutboundEnvironmentEndpointCollection.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── RestoreRequestProperties.PowerShell.cs │ │ │ │ │ │ ├── RestoreRequestProperties.TypeConverter.cs │ │ │ │ │ │ ├── RestoreRequestProperties.cs │ │ │ │ │ │ ├── RestoreRequestProperties.json.cs │ │ │ │ │ │ ├── RestoreResult.PowerShell.cs │ │ │ │ │ │ ├── RestoreResult.TypeConverter.cs │ │ │ │ │ │ ├── RestoreResult.cs │ │ │ │ │ │ ├── RestoreResult.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ └── UserAssignedIdentity.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── BackupAzHsmCloudHsmCluster_Backup.cs │ │ │ │ │ ├── BackupAzHsmCloudHsmCluster_BackupExpanded.cs │ │ │ │ │ ├── BackupAzHsmCloudHsmCluster_BackupViaIdentity.cs │ │ │ │ │ ├── BackupAzHsmCloudHsmCluster_BackupViaIdentityExpanded.cs │ │ │ │ │ ├── BackupAzHsmCloudHsmCluster_BackupViaJsonFilePath.cs │ │ │ │ │ ├── BackupAzHsmCloudHsmCluster_BackupViaJsonString.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterBackupStatus_Get.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterBackupStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterBackupStatus_GetViaIdentityCloudHsmCluster.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterPrivateEndpointConnection_Get.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterPrivateEndpointConnection_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterPrivateEndpointConnection_GetViaIdentityCloudHsmCluster.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterPrivateLinkResource_List.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterRestoreStatus_Get.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterRestoreStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHsmCloudHsmClusterRestoreStatus_GetViaIdentityCloudHsmCluster.cs │ │ │ │ │ ├── GetAzHsmCloudHsmCluster_Get.cs │ │ │ │ │ ├── GetAzHsmCloudHsmCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHsmCloudHsmCluster_List.cs │ │ │ │ │ ├── GetAzHsmCloudHsmCluster_List1.cs │ │ │ │ │ ├── GetAzHsmDedicatedHsmOutboundNetworkDependencyEndpoint_List.cs │ │ │ │ │ ├── GetAzHsmDedicatedHsm_Get.cs │ │ │ │ │ ├── GetAzHsmDedicatedHsm_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHsmDedicatedHsm_List.cs │ │ │ │ │ ├── GetAzHsmDedicatedHsm_List1.cs │ │ │ │ │ ├── GetAzHsmOperation_List.cs │ │ │ │ │ ├── NewAzHsmCloudHsmClusterPrivateEndpointConnection_CreateExpanded.cs │ │ │ │ │ ├── NewAzHsmCloudHsmClusterPrivateEndpointConnection_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHsmCloudHsmClusterPrivateEndpointConnection_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzHsmCloudHsmCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzHsmCloudHsmCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHsmCloudHsmCluster_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzHsmDedicatedHsm_CreateExpanded.cs │ │ │ │ │ ├── NewAzHsmDedicatedHsm_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHsmDedicatedHsm_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzHsmCloudHsmClusterPrivateEndpointConnection_Delete.cs │ │ │ │ │ ├── RemoveAzHsmCloudHsmClusterPrivateEndpointConnection_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzHsmCloudHsmClusterPrivateEndpointConnection_DeleteViaIdentityCloudHsmCluster.cs │ │ │ │ │ ├── RemoveAzHsmCloudHsmCluster_Delete.cs │ │ │ │ │ ├── RemoveAzHsmCloudHsmCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzHsmDedicatedHsm_Delete.cs │ │ │ │ │ ├── RemoveAzHsmDedicatedHsm_DeleteViaIdentity.cs │ │ │ │ │ ├── RestoreAzHsmCloudHsmCluster_Restore.cs │ │ │ │ │ ├── RestoreAzHsmCloudHsmCluster_RestoreExpanded.cs │ │ │ │ │ ├── RestoreAzHsmCloudHsmCluster_RestoreViaIdentity.cs │ │ │ │ │ ├── RestoreAzHsmCloudHsmCluster_RestoreViaIdentityExpanded.cs │ │ │ │ │ ├── RestoreAzHsmCloudHsmCluster_RestoreViaJsonFilePath.cs │ │ │ │ │ ├── RestoreAzHsmCloudHsmCluster_RestoreViaJsonString.cs │ │ │ │ │ ├── SetAzHsmCloudHsmCluster_UpdateExpanded.cs │ │ │ │ │ ├── SetAzHsmCloudHsmCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzHsmCloudHsmCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzHsmDedicatedHsm_UpdateExpanded.cs │ │ │ │ │ ├── SetAzHsmDedicatedHsm_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzHsmDedicatedHsm_UpdateViaJsonString.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterBackupProperty_Validate.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterBackupProperty_ValidateExpanded.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterBackupProperty_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterBackupProperty_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterBackupProperty_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterBackupProperty_ValidateViaJsonString.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterRestoreProperty_Validate.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterRestoreProperty_ValidateExpanded.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterRestoreProperty_ValidateViaIdentity.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterRestoreProperty_ValidateViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterRestoreProperty_ValidateViaJsonFilePath.cs │ │ │ │ │ ├── TestAzHsmCloudHsmClusterRestoreProperty_ValidateViaJsonString.cs │ │ │ │ │ ├── UpdateAzHsmCloudHsmClusterPrivateEndpointConnection_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHsmCloudHsmClusterPrivateEndpointConnection_UpdateViaIdentityCloudHsmClusterExpanded.cs │ │ │ │ │ ├── UpdateAzHsmCloudHsmClusterPrivateEndpointConnection_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHsmCloudHsmCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHsmCloudHsmCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHsmDedicatedHsm_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHsmDedicatedHsm_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHsmDedicatedHsm_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzHsmDedicatedHsm_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Hsm.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── HealthDataAIServices.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2024-02-28-preview │ │ │ │ ├── DeidServices_Create_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_Delete_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_Get_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_Update_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_Create_MaximumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_Delete_MaximumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_Get_MaximumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_ListByDeidService_MaximumSet_Gen.json │ │ │ │ └── PrivateLinks_ListByDeidService_MaximumSet_Gen.json │ │ │ └── 2024-09-20 │ │ │ │ ├── DeidServices_Create_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_Delete_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_Get_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── DeidServices_Update_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_Create_MaximumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_Delete_MaximumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_Get_MaximumSet_Gen.json │ │ │ │ ├── PrivateEndpointConnections_ListByDeidService_MaximumSet_Gen.json │ │ │ │ └── PrivateLinks_ListByDeidService_MaximumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.HealthDataAIServices.csproj │ │ │ ├── Az.HealthDataAIServices.nuspec │ │ │ ├── Az.HealthDataAIServices.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.HealthDataAIServices.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftHealthDataAiServices.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── DeidPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── DeidPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DeidPropertiesUpdate.cs │ │ │ │ │ │ ├── DeidPropertiesUpdate.json.cs │ │ │ │ │ │ ├── DeidService.PowerShell.cs │ │ │ │ │ │ ├── DeidService.TypeConverter.cs │ │ │ │ │ │ ├── DeidService.cs │ │ │ │ │ │ ├── DeidService.json.cs │ │ │ │ │ │ ├── DeidServiceListResult.PowerShell.cs │ │ │ │ │ │ ├── DeidServiceListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeidServiceListResult.cs │ │ │ │ │ │ ├── DeidServiceListResult.json.cs │ │ │ │ │ │ ├── DeidServiceProperties.PowerShell.cs │ │ │ │ │ │ ├── DeidServiceProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeidServiceProperties.cs │ │ │ │ │ │ ├── DeidServiceProperties.json.cs │ │ │ │ │ │ ├── DeidServicesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DeidServicesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DeidServicesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DeidServicesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DeidServicesUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DeidServicesUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DeidServicesUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DeidServicesUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DeidUpdate.PowerShell.cs │ │ │ │ │ │ ├── DeidUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DeidUpdate.cs │ │ │ │ │ │ ├── DeidUpdate.json.cs │ │ │ │ │ │ ├── DeidUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── DeidUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── DeidUpdateTags.cs │ │ │ │ │ │ ├── DeidUpdateTags.dictionary.cs │ │ │ │ │ │ ├── DeidUpdateTags.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── HealthDataAiServicesIdentity.PowerShell.cs │ │ │ │ │ │ ├── HealthDataAiServicesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── HealthDataAiServicesIdentity.cs │ │ │ │ │ │ ├── HealthDataAiServicesIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdate.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUpdateUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResource.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ └── UserAssignedIdentity.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzHealthDataAiServicesDeidService_Get.cs │ │ │ │ │ ├── GetAzHealthDataAiServicesDeidService_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHealthDataAiServicesDeidService_List.cs │ │ │ │ │ ├── GetAzHealthDataAiServicesDeidService_List1.cs │ │ │ │ │ ├── GetAzHealthDataAiServicesOperation_List.cs │ │ │ │ │ ├── GetAzHealthDataAiServicesPrivateLink_List.cs │ │ │ │ │ ├── NewAzHealthDataAiServicesDeidService_CreateExpanded.cs │ │ │ │ │ ├── NewAzHealthDataAiServicesDeidService_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzHealthDataAiServicesDeidService_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHealthDataAiServicesDeidService_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzHealthDataAiServicesDeidService_Delete.cs │ │ │ │ │ ├── RemoveAzHealthDataAiServicesDeidService_DeleteViaIdentity.cs │ │ │ │ │ ├── UpdateAzHealthDataAiServicesDeidService_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzHealthDataAiServicesDeidService_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.HealthDataAIServices.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Help.Management.brown │ │ ├── DiagnosticResource.tsp │ │ ├── SimplifiedSolutionsResource.tsp │ │ ├── SolutionResource.tsp │ │ ├── SolutionResourceSelfHelp.tsp │ │ ├── TroubleshooterResource.tsp │ │ ├── back-compatible.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Help.csproj │ │ │ ├── Az.Help.nuspec │ │ │ ├── Az.Help.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Help.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── HelpRp.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AutomatedCheckResult.PowerShell.cs │ │ │ │ │ │ ├── AutomatedCheckResult.TypeConverter.cs │ │ │ │ │ │ ├── AutomatedCheckResult.cs │ │ │ │ │ │ ├── AutomatedCheckResult.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.cs │ │ │ │ │ │ ├── CheckNameAvailabilityRequest.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResponse.json.cs │ │ │ │ │ │ ├── ClassificationService.PowerShell.cs │ │ │ │ │ │ ├── ClassificationService.TypeConverter.cs │ │ │ │ │ │ ├── ClassificationService.cs │ │ │ │ │ │ ├── ClassificationService.json.cs │ │ │ │ │ │ ├── ContinueRequestBody.PowerShell.cs │ │ │ │ │ │ ├── ContinueRequestBody.TypeConverter.cs │ │ │ │ │ │ ├── ContinueRequestBody.cs │ │ │ │ │ │ ├── ContinueRequestBody.json.cs │ │ │ │ │ │ ├── Diagnostic.PowerShell.cs │ │ │ │ │ │ ├── Diagnostic.TypeConverter.cs │ │ │ │ │ │ ├── Diagnostic.cs │ │ │ │ │ │ ├── Diagnostic.json.cs │ │ │ │ │ │ ├── DiagnosticInvocation.PowerShell.cs │ │ │ │ │ │ ├── DiagnosticInvocation.TypeConverter.cs │ │ │ │ │ │ ├── DiagnosticInvocation.cs │ │ │ │ │ │ ├── DiagnosticInvocation.json.cs │ │ │ │ │ │ ├── DiagnosticInvocationAdditionalParameters.PowerShell.cs │ │ │ │ │ │ ├── DiagnosticInvocationAdditionalParameters.TypeConverter.cs │ │ │ │ │ │ ├── DiagnosticInvocationAdditionalParameters.cs │ │ │ │ │ │ ├── DiagnosticInvocationAdditionalParameters.dictionary.cs │ │ │ │ │ │ ├── DiagnosticInvocationAdditionalParameters.json.cs │ │ │ │ │ │ ├── DiagnosticResource.PowerShell.cs │ │ │ │ │ │ ├── DiagnosticResource.TypeConverter.cs │ │ │ │ │ │ ├── DiagnosticResource.cs │ │ │ │ │ │ ├── DiagnosticResource.json.cs │ │ │ │ │ │ ├── DiagnosticResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── DiagnosticResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── DiagnosticResourceProperties.cs │ │ │ │ │ │ ├── DiagnosticResourceProperties.json.cs │ │ │ │ │ │ ├── DiagnosticResourcePropertiesGlobalParameters.PowerShell.cs │ │ │ │ │ │ ├── DiagnosticResourcePropertiesGlobalParameters.TypeConverter.cs │ │ │ │ │ │ ├── DiagnosticResourcePropertiesGlobalParameters.cs │ │ │ │ │ │ ├── DiagnosticResourcePropertiesGlobalParameters.dictionary.cs │ │ │ │ │ │ ├── DiagnosticResourcePropertiesGlobalParameters.json.cs │ │ │ │ │ │ ├── DiscoveryNlpRequest.PowerShell.cs │ │ │ │ │ │ ├── DiscoveryNlpRequest.TypeConverter.cs │ │ │ │ │ │ ├── DiscoveryNlpRequest.cs │ │ │ │ │ │ ├── DiscoveryNlpRequest.json.cs │ │ │ │ │ │ ├── DiscoveryNlpResponse.PowerShell.cs │ │ │ │ │ │ ├── DiscoveryNlpResponse.TypeConverter.cs │ │ │ │ │ │ ├── DiscoveryNlpResponse.cs │ │ │ │ │ │ ├── DiscoveryNlpResponse.json.cs │ │ │ │ │ │ ├── DiscoveryResponse.PowerShell.cs │ │ │ │ │ │ ├── DiscoveryResponse.TypeConverter.cs │ │ │ │ │ │ ├── DiscoveryResponse.cs │ │ │ │ │ │ ├── DiscoveryResponse.json.cs │ │ │ │ │ │ ├── Error.PowerShell.cs │ │ │ │ │ │ ├── Error.TypeConverter.cs │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExtensionResource.PowerShell.cs │ │ │ │ │ │ ├── ExtensionResource.TypeConverter.cs │ │ │ │ │ │ ├── ExtensionResource.cs │ │ │ │ │ │ ├── ExtensionResource.json.cs │ │ │ │ │ │ ├── Filter.PowerShell.cs │ │ │ │ │ │ ├── Filter.TypeConverter.cs │ │ │ │ │ │ ├── Filter.cs │ │ │ │ │ │ ├── Filter.json.cs │ │ │ │ │ │ ├── FilterGroup.PowerShell.cs │ │ │ │ │ │ ├── FilterGroup.TypeConverter.cs │ │ │ │ │ │ ├── FilterGroup.cs │ │ │ │ │ │ ├── FilterGroup.json.cs │ │ │ │ │ │ ├── HelpIdentity.PowerShell.cs │ │ │ │ │ │ ├── HelpIdentity.TypeConverter.cs │ │ │ │ │ │ ├── HelpIdentity.cs │ │ │ │ │ │ ├── HelpIdentity.json.cs │ │ │ │ │ │ ├── Insight.PowerShell.cs │ │ │ │ │ │ ├── Insight.TypeConverter.cs │ │ │ │ │ │ ├── Insight.cs │ │ │ │ │ │ ├── Insight.json.cs │ │ │ │ │ │ ├── MetricsBasedChart.PowerShell.cs │ │ │ │ │ │ ├── MetricsBasedChart.TypeConverter.cs │ │ │ │ │ │ ├── MetricsBasedChart.cs │ │ │ │ │ │ ├── MetricsBasedChart.json.cs │ │ │ │ │ │ ├── NlpSolutions.PowerShell.cs │ │ │ │ │ │ ├── NlpSolutions.TypeConverter.cs │ │ │ │ │ │ ├── NlpSolutions.cs │ │ │ │ │ │ ├── NlpSolutions.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── ReplacementMaps.PowerShell.cs │ │ │ │ │ │ ├── ReplacementMaps.TypeConverter.cs │ │ │ │ │ │ ├── ReplacementMaps.cs │ │ │ │ │ │ ├── ReplacementMaps.json.cs │ │ │ │ │ │ ├── ReplacementMapsSelfHelp.PowerShell.cs │ │ │ │ │ │ ├── ReplacementMapsSelfHelp.TypeConverter.cs │ │ │ │ │ │ ├── ReplacementMapsSelfHelp.cs │ │ │ │ │ │ ├── ReplacementMapsSelfHelp.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResponseOption.PowerShell.cs │ │ │ │ │ │ ├── ResponseOption.TypeConverter.cs │ │ │ │ │ │ ├── ResponseOption.cs │ │ │ │ │ │ ├── ResponseOption.json.cs │ │ │ │ │ │ ├── ResponseValidationProperties.PowerShell.cs │ │ │ │ │ │ ├── ResponseValidationProperties.TypeConverter.cs │ │ │ │ │ │ ├── ResponseValidationProperties.cs │ │ │ │ │ │ ├── ResponseValidationProperties.json.cs │ │ │ │ │ │ ├── RestartTroubleshooterResponse.PowerShell.cs │ │ │ │ │ │ ├── RestartTroubleshooterResponse.TypeConverter.cs │ │ │ │ │ │ ├── RestartTroubleshooterResponse.cs │ │ │ │ │ │ ├── RestartTroubleshooterResponse.json.cs │ │ │ │ │ │ ├── SearchResult.PowerShell.cs │ │ │ │ │ │ ├── SearchResult.TypeConverter.cs │ │ │ │ │ │ ├── SearchResult.cs │ │ │ │ │ │ ├── SearchResult.json.cs │ │ │ │ │ │ ├── Section.PowerShell.cs │ │ │ │ │ │ ├── Section.TypeConverter.cs │ │ │ │ │ │ ├── Section.cs │ │ │ │ │ │ ├── Section.json.cs │ │ │ │ │ │ ├── SectionSelfHelp.PowerShell.cs │ │ │ │ │ │ ├── SectionSelfHelp.TypeConverter.cs │ │ │ │ │ │ ├── SectionSelfHelp.cs │ │ │ │ │ │ ├── SectionSelfHelp.json.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResource.PowerShell.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResource.TypeConverter.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResource.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResource.json.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourceProperties.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourceProperties.json.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesAppendix.PowerShell.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesAppendix.TypeConverter.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesAppendix.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesAppendix.dictionary.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesAppendix.json.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesParameters.PowerShell.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesParameters.TypeConverter.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesParameters.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesParameters.dictionary.cs │ │ │ │ │ │ ├── SimplifiedSolutionsResourcePropertiesParameters.json.cs │ │ │ │ │ │ ├── SolutionMetadataProperties.PowerShell.cs │ │ │ │ │ │ ├── SolutionMetadataProperties.TypeConverter.cs │ │ │ │ │ │ ├── SolutionMetadataProperties.cs │ │ │ │ │ │ ├── SolutionMetadataProperties.json.cs │ │ │ │ │ │ ├── SolutionMetadataResource.PowerShell.cs │ │ │ │ │ │ ├── SolutionMetadataResource.TypeConverter.cs │ │ │ │ │ │ ├── SolutionMetadataResource.cs │ │ │ │ │ │ ├── SolutionMetadataResource.json.cs │ │ │ │ │ │ ├── SolutionNlpMetadataResource.PowerShell.cs │ │ │ │ │ │ ├── SolutionNlpMetadataResource.TypeConverter.cs │ │ │ │ │ │ ├── SolutionNlpMetadataResource.cs │ │ │ │ │ │ ├── SolutionNlpMetadataResource.json.cs │ │ │ │ │ │ ├── SolutionPatchRequestBody.PowerShell.cs │ │ │ │ │ │ ├── SolutionPatchRequestBody.TypeConverter.cs │ │ │ │ │ │ ├── SolutionPatchRequestBody.cs │ │ │ │ │ │ ├── SolutionPatchRequestBody.json.cs │ │ │ │ │ │ ├── SolutionResource.PowerShell.cs │ │ │ │ │ │ ├── SolutionResource.TypeConverter.cs │ │ │ │ │ │ ├── SolutionResource.cs │ │ │ │ │ │ ├── SolutionResource.json.cs │ │ │ │ │ │ ├── SolutionResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── SolutionResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── SolutionResourceProperties.cs │ │ │ │ │ │ ├── SolutionResourceProperties.json.cs │ │ │ │ │ │ ├── SolutionResourcePropertiesParameters.PowerShell.cs │ │ │ │ │ │ ├── SolutionResourcePropertiesParameters.TypeConverter.cs │ │ │ │ │ │ ├── SolutionResourcePropertiesParameters.cs │ │ │ │ │ │ ├── SolutionResourcePropertiesParameters.dictionary.cs │ │ │ │ │ │ ├── SolutionResourcePropertiesParameters.json.cs │ │ │ │ │ │ ├── SolutionResourceSelfHelp.PowerShell.cs │ │ │ │ │ │ ├── SolutionResourceSelfHelp.TypeConverter.cs │ │ │ │ │ │ ├── SolutionResourceSelfHelp.cs │ │ │ │ │ │ ├── SolutionResourceSelfHelp.json.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBody.PowerShell.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBody.TypeConverter.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBody.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBody.json.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBodyParameters.PowerShell.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBodyParameters.TypeConverter.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBodyParameters.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBodyParameters.dictionary.cs │ │ │ │ │ │ ├── SolutionWarmUpRequestBodyParameters.json.cs │ │ │ │ │ │ ├── Solutions.PowerShell.cs │ │ │ │ │ │ ├── Solutions.TypeConverter.cs │ │ │ │ │ │ ├── Solutions.cs │ │ │ │ │ │ ├── Solutions.json.cs │ │ │ │ │ │ ├── SolutionsDiagnostic.PowerShell.cs │ │ │ │ │ │ ├── SolutionsDiagnostic.TypeConverter.cs │ │ │ │ │ │ ├── SolutionsDiagnostic.cs │ │ │ │ │ │ ├── SolutionsDiagnostic.json.cs │ │ │ │ │ │ ├── SolutionsResourcePropertiesSelfHelp.PowerShell.cs │ │ │ │ │ │ ├── SolutionsResourcePropertiesSelfHelp.TypeConverter.cs │ │ │ │ │ │ ├── SolutionsResourcePropertiesSelfHelp.cs │ │ │ │ │ │ ├── SolutionsResourcePropertiesSelfHelp.json.cs │ │ │ │ │ │ ├── SolutionsTroubleshooters.PowerShell.cs │ │ │ │ │ │ ├── SolutionsTroubleshooters.TypeConverter.cs │ │ │ │ │ │ ├── SolutionsTroubleshooters.cs │ │ │ │ │ │ ├── SolutionsTroubleshooters.json.cs │ │ │ │ │ │ ├── Step.PowerShell.cs │ │ │ │ │ │ ├── Step.TypeConverter.cs │ │ │ │ │ │ ├── Step.cs │ │ │ │ │ │ ├── Step.json.cs │ │ │ │ │ │ ├── StepInput.PowerShell.cs │ │ │ │ │ │ ├── StepInput.TypeConverter.cs │ │ │ │ │ │ ├── StepInput.cs │ │ │ │ │ │ ├── StepInput.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TriggerCriterion.PowerShell.cs │ │ │ │ │ │ ├── TriggerCriterion.TypeConverter.cs │ │ │ │ │ │ ├── TriggerCriterion.cs │ │ │ │ │ │ ├── TriggerCriterion.json.cs │ │ │ │ │ │ ├── TroubleshooterInstanceProperties.PowerShell.cs │ │ │ │ │ │ ├── TroubleshooterInstanceProperties.TypeConverter.cs │ │ │ │ │ │ ├── TroubleshooterInstanceProperties.cs │ │ │ │ │ │ ├── TroubleshooterInstanceProperties.json.cs │ │ │ │ │ │ ├── TroubleshooterInstancePropertiesParameters.PowerShell.cs │ │ │ │ │ │ ├── TroubleshooterInstancePropertiesParameters.TypeConverter.cs │ │ │ │ │ │ ├── TroubleshooterInstancePropertiesParameters.cs │ │ │ │ │ │ ├── TroubleshooterInstancePropertiesParameters.dictionary.cs │ │ │ │ │ │ ├── TroubleshooterInstancePropertiesParameters.json.cs │ │ │ │ │ │ ├── TroubleshooterResource.PowerShell.cs │ │ │ │ │ │ ├── TroubleshooterResource.TypeConverter.cs │ │ │ │ │ │ ├── TroubleshooterResource.cs │ │ │ │ │ │ ├── TroubleshooterResource.json.cs │ │ │ │ │ │ ├── TroubleshooterResponse.PowerShell.cs │ │ │ │ │ │ ├── TroubleshooterResponse.TypeConverter.cs │ │ │ │ │ │ ├── TroubleshooterResponse.cs │ │ │ │ │ │ ├── TroubleshooterResponse.json.cs │ │ │ │ │ │ ├── TroubleshootersContinueNoContentResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── TroubleshootersContinueNoContentResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── TroubleshootersContinueNoContentResponseHeaders.cs │ │ │ │ │ │ ├── TroubleshootersContinueNoContentResponseHeaders.json.cs │ │ │ │ │ │ ├── TroubleshootersEndNoContentResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── TroubleshootersEndNoContentResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── TroubleshootersEndNoContentResponseHeaders.cs │ │ │ │ │ │ ├── TroubleshootersEndNoContentResponseHeaders.json.cs │ │ │ │ │ │ ├── Video.PowerShell.cs │ │ │ │ │ │ ├── Video.TypeConverter.cs │ │ │ │ │ │ ├── Video.cs │ │ │ │ │ │ ├── Video.json.cs │ │ │ │ │ │ ├── VideoGroup.PowerShell.cs │ │ │ │ │ │ ├── VideoGroup.TypeConverter.cs │ │ │ │ │ │ ├── VideoGroup.cs │ │ │ │ │ │ ├── VideoGroup.json.cs │ │ │ │ │ │ ├── VideoGroupVideo.PowerShell.cs │ │ │ │ │ │ ├── VideoGroupVideo.TypeConverter.cs │ │ │ │ │ │ ├── VideoGroupVideo.cs │ │ │ │ │ │ ├── VideoGroupVideo.json.cs │ │ │ │ │ │ ├── WebResult.PowerShell.cs │ │ │ │ │ │ ├── WebResult.TypeConverter.cs │ │ │ │ │ │ ├── WebResult.cs │ │ │ │ │ │ └── WebResult.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_Discover.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_Discover1.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_DiscoverExpanded.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_DiscoverExpanded1.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_DiscoverViaJsonFilePath.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_DiscoverViaJsonFilePath1.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_DiscoverViaJsonString.cs │ │ │ │ │ ├── FindAzHelpDiscoverySolutionNlpSolution_DiscoverViaJsonString1.cs │ │ │ │ │ ├── GetAzHelpDiagnostic_Get.cs │ │ │ │ │ ├── GetAzHelpDiagnostic_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHelpDiscoverySolution_List.cs │ │ │ │ │ ├── GetAzHelpOperation_List.cs │ │ │ │ │ ├── GetAzHelpSimplifiedSolution_Get.cs │ │ │ │ │ ├── GetAzHelpSimplifiedSolution_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHelpSolutionSelfHelp_Get.cs │ │ │ │ │ ├── GetAzHelpSolutionSelfHelp_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHelpSolution_Get.cs │ │ │ │ │ ├── GetAzHelpSolution_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHelpTroubleshooter_Get.cs │ │ │ │ │ ├── GetAzHelpTroubleshooter_GetViaIdentity.cs │ │ │ │ │ ├── InvokeAzHelpContinueTroubleshooter_Continue.cs │ │ │ │ │ ├── InvokeAzHelpContinueTroubleshooter_ContinueExpanded.cs │ │ │ │ │ ├── InvokeAzHelpContinueTroubleshooter_ContinueViaIdentity.cs │ │ │ │ │ ├── InvokeAzHelpContinueTroubleshooter_ContinueViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzHelpContinueTroubleshooter_ContinueViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzHelpContinueTroubleshooter_ContinueViaJsonString.cs │ │ │ │ │ ├── InvokeAzHelpWarmSolutionUp_Warm.cs │ │ │ │ │ ├── InvokeAzHelpWarmSolutionUp_WarmExpanded.cs │ │ │ │ │ ├── InvokeAzHelpWarmSolutionUp_WarmViaIdentity.cs │ │ │ │ │ ├── InvokeAzHelpWarmSolutionUp_WarmViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzHelpWarmSolutionUp_WarmViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzHelpWarmSolutionUp_WarmViaJsonString.cs │ │ │ │ │ ├── NewAzHelpDiagnostic_CreateExpanded.cs │ │ │ │ │ ├── NewAzHelpDiagnostic_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHelpDiagnostic_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzHelpSimplifiedSolution_CreateExpanded.cs │ │ │ │ │ ├── NewAzHelpSimplifiedSolution_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHelpSimplifiedSolution_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzHelpSolution_CreateExpanded.cs │ │ │ │ │ ├── NewAzHelpSolution_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHelpSolution_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzHelpTroubleshooter_CreateExpanded.cs │ │ │ │ │ ├── NewAzHelpTroubleshooter_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHelpTroubleshooter_CreateViaJsonString.cs │ │ │ │ │ ├── RestartAzHelpTroubleshooter_Restart.cs │ │ │ │ │ ├── RestartAzHelpTroubleshooter_RestartViaIdentity.cs │ │ │ │ │ ├── StopAzHelpTroubleshooter_End.cs │ │ │ │ │ ├── StopAzHelpTroubleshooter_EndViaIdentity.cs │ │ │ │ │ ├── TestAzHelpCheckNameAvailability_Check.cs │ │ │ │ │ ├── TestAzHelpCheckNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzHelpCheckNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzHelpCheckNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzHelpDiagnostic_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHelpDiagnostic_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHelpSimplifiedSolution_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHelpSimplifiedSolution_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHelpSolution_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHelpSolution_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHelpSolution_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzHelpSolution_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzHelpTroubleshooter_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzHelpTroubleshooter_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Help.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── HybridKubernetes.Management.brown │ │ ├── ConnectedCluster.tsp │ │ ├── back-compatible.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.HybridKubernetes.csproj │ │ │ ├── Az.HybridKubernetes.nuspec │ │ │ ├── Az.HybridKubernetes.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.HybridKubernetes.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── ConnectedKubernetesClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AadProfile.PowerShell.cs │ │ │ │ │ │ ├── AadProfile.TypeConverter.cs │ │ │ │ │ │ ├── AadProfile.cs │ │ │ │ │ │ ├── AadProfile.json.cs │ │ │ │ │ │ ├── AgentError.PowerShell.cs │ │ │ │ │ │ ├── AgentError.TypeConverter.cs │ │ │ │ │ │ ├── AgentError.cs │ │ │ │ │ │ ├── AgentError.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ArcAgentProfile.PowerShell.cs │ │ │ │ │ │ ├── ArcAgentProfile.TypeConverter.cs │ │ │ │ │ │ ├── ArcAgentProfile.cs │ │ │ │ │ │ ├── ArcAgentProfile.json.cs │ │ │ │ │ │ ├── ArcAgentryConfigurations.PowerShell.cs │ │ │ │ │ │ ├── ArcAgentryConfigurations.TypeConverter.cs │ │ │ │ │ │ ├── ArcAgentryConfigurations.cs │ │ │ │ │ │ ├── ArcAgentryConfigurations.json.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsProtectedSettings.PowerShell.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsProtectedSettings.TypeConverter.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsProtectedSettings.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsProtectedSettings.dictionary.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsProtectedSettings.json.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsSettings.PowerShell.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsSettings.TypeConverter.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsSettings.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsSettings.dictionary.cs │ │ │ │ │ │ ├── ArcAgentryConfigurationsSettings.json.cs │ │ │ │ │ │ ├── ConnectedCluster.PowerShell.cs │ │ │ │ │ │ ├── ConnectedCluster.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedCluster.cs │ │ │ │ │ │ ├── ConnectedCluster.json.cs │ │ │ │ │ │ ├── ConnectedClusterIdentity.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterIdentity.cs │ │ │ │ │ │ ├── ConnectedClusterIdentity.json.cs │ │ │ │ │ │ ├── ConnectedClusterList.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterList.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterList.cs │ │ │ │ │ │ ├── ConnectedClusterList.json.cs │ │ │ │ │ │ ├── ConnectedClusterPatch.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterPatch.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterPatch.cs │ │ │ │ │ │ ├── ConnectedClusterPatch.json.cs │ │ │ │ │ │ ├── ConnectedClusterPatchProperties.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterPatchProperties.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterPatchProperties.cs │ │ │ │ │ │ ├── ConnectedClusterPatchProperties.json.cs │ │ │ │ │ │ ├── ConnectedClusterPatchTags.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterPatchTags.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterPatchTags.cs │ │ │ │ │ │ ├── ConnectedClusterPatchTags.dictionary.cs │ │ │ │ │ │ ├── ConnectedClusterPatchTags.json.cs │ │ │ │ │ │ ├── ConnectedClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterProperties.cs │ │ │ │ │ │ ├── ConnectedClusterProperties.json.cs │ │ │ │ │ │ ├── ConnectedClusterPropertiesMiscellaneousProperties.PowerShell.cs │ │ │ │ │ │ ├── ConnectedClusterPropertiesMiscellaneousProperties.TypeConverter.cs │ │ │ │ │ │ ├── ConnectedClusterPropertiesMiscellaneousProperties.cs │ │ │ │ │ │ ├── ConnectedClusterPropertiesMiscellaneousProperties.dictionary.cs │ │ │ │ │ │ ├── ConnectedClusterPropertiesMiscellaneousProperties.json.cs │ │ │ │ │ │ ├── CredentialResult.PowerShell.cs │ │ │ │ │ │ ├── CredentialResult.TypeConverter.cs │ │ │ │ │ │ ├── CredentialResult.cs │ │ │ │ │ │ ├── CredentialResult.json.cs │ │ │ │ │ │ ├── CredentialResults.PowerShell.cs │ │ │ │ │ │ ├── CredentialResults.TypeConverter.cs │ │ │ │ │ │ ├── CredentialResults.cs │ │ │ │ │ │ ├── CredentialResults.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Gateway.PowerShell.cs │ │ │ │ │ │ ├── Gateway.TypeConverter.cs │ │ │ │ │ │ ├── Gateway.cs │ │ │ │ │ │ ├── Gateway.json.cs │ │ │ │ │ │ ├── HybridConnectionConfig.PowerShell.cs │ │ │ │ │ │ ├── HybridConnectionConfig.TypeConverter.cs │ │ │ │ │ │ ├── HybridConnectionConfig.cs │ │ │ │ │ │ ├── HybridConnectionConfig.json.cs │ │ │ │ │ │ ├── HybridKubernetesIdentity.PowerShell.cs │ │ │ │ │ │ ├── HybridKubernetesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── HybridKubernetesIdentity.cs │ │ │ │ │ │ ├── HybridKubernetesIdentity.json.cs │ │ │ │ │ │ ├── ListClusterUserCredentialProperties.PowerShell.cs │ │ │ │ │ │ ├── ListClusterUserCredentialProperties.TypeConverter.cs │ │ │ │ │ │ ├── ListClusterUserCredentialProperties.cs │ │ │ │ │ │ ├── ListClusterUserCredentialProperties.json.cs │ │ │ │ │ │ ├── OidcIssuerProfile.PowerShell.cs │ │ │ │ │ │ ├── OidcIssuerProfile.TypeConverter.cs │ │ │ │ │ │ ├── OidcIssuerProfile.cs │ │ │ │ │ │ ├── OidcIssuerProfile.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationList.PowerShell.cs │ │ │ │ │ │ ├── OperationList.TypeConverter.cs │ │ │ │ │ │ ├── OperationList.cs │ │ │ │ │ │ ├── OperationList.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SecurityProfile.PowerShell.cs │ │ │ │ │ │ ├── SecurityProfile.TypeConverter.cs │ │ │ │ │ │ ├── SecurityProfile.cs │ │ │ │ │ │ ├── SecurityProfile.json.cs │ │ │ │ │ │ ├── SecurityProfileWorkloadIdentity.PowerShell.cs │ │ │ │ │ │ ├── SecurityProfileWorkloadIdentity.TypeConverter.cs │ │ │ │ │ │ ├── SecurityProfileWorkloadIdentity.cs │ │ │ │ │ │ ├── SecurityProfileWorkloadIdentity.json.cs │ │ │ │ │ │ ├── SystemComponent.PowerShell.cs │ │ │ │ │ │ ├── SystemComponent.TypeConverter.cs │ │ │ │ │ │ ├── SystemComponent.cs │ │ │ │ │ │ ├── SystemComponent.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ └── TrackedResourceTags.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzHybridKubernetesConnectedClusterUserCredential_List.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedClusterUserCredential_ListExpanded.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedClusterUserCredential_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedClusterUserCredential_ListViaJsonString.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedCluster_Get.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedCluster_List.cs │ │ │ │ │ ├── GetAzHybridKubernetesConnectedCluster_List1.cs │ │ │ │ │ ├── GetAzHybridKubernetesOperation_Get.cs │ │ │ │ │ ├── NewAzHybridKubernetesConnectedCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzHybridKubernetesConnectedCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzHybridKubernetesConnectedCluster_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzHybridKubernetesConnectedCluster_Delete.cs │ │ │ │ │ ├── RemoveAzHybridKubernetesConnectedCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzHybridKubernetesConnectedCluster_Replace.cs │ │ │ │ │ ├── SetAzHybridKubernetesConnectedCluster_ReplaceExpanded.cs │ │ │ │ │ ├── SetAzHybridKubernetesConnectedCluster_ReplaceViaJsonFilePath.cs │ │ │ │ │ ├── SetAzHybridKubernetesConnectedCluster_ReplaceViaJsonString.cs │ │ │ │ │ ├── UpdateAzHybridKubernetesConnectedCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzHybridKubernetesConnectedCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzHybridKubernetesConnectedCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzHybridKubernetesConnectedCluster_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.HybridKubernetes.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Informatica.DataManagement.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-05-08 │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MinimumSet_Gen.json │ │ │ │ ├── Organizations_GetAllServerlessRuntimes_MaximumSet_Gen.json │ │ │ │ ├── Organizations_GetAllServerlessRuntimes_MinimumSet_Gen.json │ │ │ │ ├── Organizations_GetServerlessMetadata_MaximumSet_Gen.json │ │ │ │ ├── Organizations_GetServerlessMetadata_MinimumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MinimumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── Organizations_Update_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Update_MinimumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_CheckDependencies_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_CheckDependencies_MinimumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_Delete_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_Get_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_Get_MinimumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_ListByInformaticaOrganizationResource_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_ServerlessResourceById_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_StartFailedServerlessRuntime_MaximumSet_Gen.json │ │ │ │ ├── ServerlessRuntimes_Update_MaximumSet_Gen.json │ │ │ │ └── ServerlessRuntimes_Update_MinimumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Informatica.csproj │ │ │ ├── Az.Informatica.nuspec │ │ │ ├── Az.Informatica.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Informatica.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Informatica.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AdvancedCustomProperties.PowerShell.cs │ │ │ │ │ │ ├── AdvancedCustomProperties.TypeConverter.cs │ │ │ │ │ │ ├── AdvancedCustomProperties.cs │ │ │ │ │ │ ├── AdvancedCustomProperties.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApplicationConfigs.PowerShell.cs │ │ │ │ │ │ ├── ApplicationConfigs.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationConfigs.cs │ │ │ │ │ │ ├── ApplicationConfigs.json.cs │ │ │ │ │ │ ├── ApplicationTypeMetadata.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeMetadata.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeMetadata.cs │ │ │ │ │ │ ├── ApplicationTypeMetadata.json.cs │ │ │ │ │ │ ├── CdiConfigProps.PowerShell.cs │ │ │ │ │ │ ├── CdiConfigProps.TypeConverter.cs │ │ │ │ │ │ ├── CdiConfigProps.cs │ │ │ │ │ │ ├── CdiConfigProps.json.cs │ │ │ │ │ │ ├── CheckDependenciesResponse.PowerShell.cs │ │ │ │ │ │ ├── CheckDependenciesResponse.TypeConverter.cs │ │ │ │ │ │ ├── CheckDependenciesResponse.cs │ │ │ │ │ │ ├── CheckDependenciesResponse.json.cs │ │ │ │ │ │ ├── CompanyDetails.PowerShell.cs │ │ │ │ │ │ ├── CompanyDetails.TypeConverter.cs │ │ │ │ │ │ ├── CompanyDetails.cs │ │ │ │ │ │ ├── CompanyDetails.json.cs │ │ │ │ │ │ ├── CompanyDetailsUpdate.PowerShell.cs │ │ │ │ │ │ ├── CompanyDetailsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── CompanyDetailsUpdate.cs │ │ │ │ │ │ ├── CompanyDetailsUpdate.json.cs │ │ │ │ │ │ ├── ComputeUnitsMetadata.PowerShell.cs │ │ │ │ │ │ ├── ComputeUnitsMetadata.TypeConverter.cs │ │ │ │ │ │ ├── ComputeUnitsMetadata.cs │ │ │ │ │ │ ├── ComputeUnitsMetadata.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── InfaRuntimeResourceFetchMetaData.PowerShell.cs │ │ │ │ │ │ ├── InfaRuntimeResourceFetchMetaData.TypeConverter.cs │ │ │ │ │ │ ├── InfaRuntimeResourceFetchMetaData.cs │ │ │ │ │ │ ├── InfaRuntimeResourceFetchMetaData.json.cs │ │ │ │ │ │ ├── InfaServerlessFetchConfigProperties.PowerShell.cs │ │ │ │ │ │ ├── InfaServerlessFetchConfigProperties.TypeConverter.cs │ │ │ │ │ │ ├── InfaServerlessFetchConfigProperties.cs │ │ │ │ │ │ ├── InfaServerlessFetchConfigProperties.json.cs │ │ │ │ │ │ ├── InformaticaIdentity.PowerShell.cs │ │ │ │ │ │ ├── InformaticaIdentity.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaIdentity.cs │ │ │ │ │ │ ├── InformaticaIdentity.json.cs │ │ │ │ │ │ ├── InformaticaOrganizationResource.PowerShell.cs │ │ │ │ │ │ ├── InformaticaOrganizationResource.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaOrganizationResource.cs │ │ │ │ │ │ ├── InformaticaOrganizationResource.json.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceListResult.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceListResult.json.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdate.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdate.json.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdateTags.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── InformaticaOrganizationResourceUpdateTags.json.cs │ │ │ │ │ │ ├── InformaticaProperties.PowerShell.cs │ │ │ │ │ │ ├── InformaticaProperties.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaProperties.cs │ │ │ │ │ │ ├── InformaticaProperties.json.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeProperties.PowerShell.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeProperties.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeProperties.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeProperties.json.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResource.PowerShell.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResource.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResource.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResource.json.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceList.PowerShell.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceList.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceList.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceList.json.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceListResult.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceListResult.json.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceUpdate.cs │ │ │ │ │ │ ├── InformaticaServerlessRuntimeResourceUpdate.json.cs │ │ │ │ │ │ ├── LinkOrganization.PowerShell.cs │ │ │ │ │ │ ├── LinkOrganization.TypeConverter.cs │ │ │ │ │ │ ├── LinkOrganization.cs │ │ │ │ │ │ ├── LinkOrganization.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── MarketplaceDetailsUpdate.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetailsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetailsUpdate.cs │ │ │ │ │ │ ├── MarketplaceDetailsUpdate.json.cs │ │ │ │ │ │ ├── NetworkInterfaceConfiguration.PowerShell.cs │ │ │ │ │ │ ├── NetworkInterfaceConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── NetworkInterfaceConfiguration.cs │ │ │ │ │ │ ├── NetworkInterfaceConfiguration.json.cs │ │ │ │ │ │ ├── NetworkInterfaceConfigurationUpdate.PowerShell.cs │ │ │ │ │ │ ├── NetworkInterfaceConfigurationUpdate.TypeConverter.cs │ │ │ │ │ │ ├── NetworkInterfaceConfigurationUpdate.cs │ │ │ │ │ │ ├── NetworkInterfaceConfigurationUpdate.json.cs │ │ │ │ │ │ ├── OfferDetails.PowerShell.cs │ │ │ │ │ │ ├── OfferDetails.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetails.cs │ │ │ │ │ │ ├── OfferDetails.json.cs │ │ │ │ │ │ ├── OfferDetailsUpdate.PowerShell.cs │ │ │ │ │ │ ├── OfferDetailsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetailsUpdate.cs │ │ │ │ │ │ ├── OfferDetailsUpdate.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── OrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationProperties.cs │ │ │ │ │ │ ├── OrganizationProperties.json.cs │ │ │ │ │ │ ├── OrganizationPropertiesCustomUpdate.PowerShell.cs │ │ │ │ │ │ ├── OrganizationPropertiesCustomUpdate.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationPropertiesCustomUpdate.cs │ │ │ │ │ │ ├── OrganizationPropertiesCustomUpdate.json.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── RegionsMetadata.PowerShell.cs │ │ │ │ │ │ ├── RegionsMetadata.TypeConverter.cs │ │ │ │ │ │ ├── RegionsMetadata.cs │ │ │ │ │ │ ├── RegionsMetadata.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ServerlessConfigProperties.PowerShell.cs │ │ │ │ │ │ ├── ServerlessConfigProperties.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessConfigProperties.cs │ │ │ │ │ │ ├── ServerlessConfigProperties.json.cs │ │ │ │ │ │ ├── ServerlessMetadataResponse.PowerShell.cs │ │ │ │ │ │ ├── ServerlessMetadataResponse.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessMetadataResponse.cs │ │ │ │ │ │ ├── ServerlessMetadataResponse.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigProperties.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigProperties.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigProperties.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigProperties.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigPropertiesUpdate.cs │ │ │ │ │ │ ├── ServerlessRuntimeConfigPropertiesUpdate.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeDependency.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeDependency.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeDependency.cs │ │ │ │ │ │ ├── ServerlessRuntimeDependency.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfile.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfile.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfile.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfile.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfileUpdate.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfileUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfileUpdate.cs │ │ │ │ │ │ ├── ServerlessRuntimeNetworkProfileUpdate.json.cs │ │ │ │ │ │ ├── ServerlessRuntimePropertiesCustomUpdate.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimePropertiesCustomUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimePropertiesCustomUpdate.cs │ │ │ │ │ │ ├── ServerlessRuntimePropertiesCustomUpdate.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeTag.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeTag.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeTag.cs │ │ │ │ │ │ ├── ServerlessRuntimeTag.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextProperties.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextProperties.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextProperties.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextProperties.json.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextPropertiesUpdate.cs │ │ │ │ │ │ ├── ServerlessRuntimeUserContextPropertiesUpdate.json.cs │ │ │ │ │ │ ├── ServerlessRuntimesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── ServerlessRuntimesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── ServerlessRuntimesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── ServerlessRuntimesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ ├── UserDetails.json.cs │ │ │ │ │ │ ├── UserDetailsUpdate.PowerShell.cs │ │ │ │ │ │ ├── UserDetailsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── UserDetailsUpdate.cs │ │ │ │ │ │ └── UserDetailsUpdate.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzInformaticaOperation_List.cs │ │ │ │ │ ├── GetAzInformaticaOrganizationServerlessMetadata_Get.cs │ │ │ │ │ ├── GetAzInformaticaOrganizationServerlessMetadata_GetViaIdentity.cs │ │ │ │ │ ├── GetAzInformaticaOrganizationServerlessRuntime_Get.cs │ │ │ │ │ ├── GetAzInformaticaOrganizationServerlessRuntime_GetViaIdentity.cs │ │ │ │ │ ├── GetAzInformaticaOrganization_Get.cs │ │ │ │ │ ├── GetAzInformaticaOrganization_GetViaIdentity.cs │ │ │ │ │ ├── GetAzInformaticaOrganization_List.cs │ │ │ │ │ ├── GetAzInformaticaOrganization_List1.cs │ │ │ │ │ ├── GetAzInformaticaServerlessRuntime_Get.cs │ │ │ │ │ ├── GetAzInformaticaServerlessRuntime_GetViaIdentity.cs │ │ │ │ │ ├── GetAzInformaticaServerlessRuntime_GetViaIdentityOrganization.cs │ │ │ │ │ ├── GetAzInformaticaServerlessRuntime_List.cs │ │ │ │ │ ├── InvokeAzInformaticaServerlessRuntimeResource_Serverless.cs │ │ │ │ │ ├── InvokeAzInformaticaServerlessRuntimeResource_ServerlessViaIdentity.cs │ │ │ │ │ ├── InvokeAzInformaticaServerlessRuntimeResource_ServerlessViaIdentityOrganization.cs │ │ │ │ │ ├── NewAzInformaticaOrganization_CreateExpanded.cs │ │ │ │ │ ├── NewAzInformaticaOrganization_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzInformaticaOrganization_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzInformaticaOrganization_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzInformaticaServerlessRuntime_CreateExpanded.cs │ │ │ │ │ ├── NewAzInformaticaServerlessRuntime_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzInformaticaServerlessRuntime_CreateViaIdentityOrganizationExpanded.cs │ │ │ │ │ ├── NewAzInformaticaServerlessRuntime_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzInformaticaServerlessRuntime_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzInformaticaOrganization_Delete.cs │ │ │ │ │ ├── RemoveAzInformaticaOrganization_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzInformaticaServerlessRuntime_Delete.cs │ │ │ │ │ ├── RemoveAzInformaticaServerlessRuntime_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzInformaticaServerlessRuntime_DeleteViaIdentityOrganization.cs │ │ │ │ │ ├── SetAzInformaticaOrganization_UpdateExpanded.cs │ │ │ │ │ ├── SetAzInformaticaOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzInformaticaOrganization_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzInformaticaServerlessRuntime_UpdateExpanded.cs │ │ │ │ │ ├── SetAzInformaticaServerlessRuntime_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzInformaticaServerlessRuntime_UpdateViaJsonString.cs │ │ │ │ │ ├── StartAzInformaticaServerlessRuntimeFailedServerlessRuntime_Start.cs │ │ │ │ │ ├── StartAzInformaticaServerlessRuntimeFailedServerlessRuntime_StartViaIdentity.cs │ │ │ │ │ ├── StartAzInformaticaServerlessRuntimeFailedServerlessRuntime_StartViaIdentityOrganization.cs │ │ │ │ │ ├── TestAzInformaticaServerlessRuntimeDependency_Check.cs │ │ │ │ │ ├── TestAzInformaticaServerlessRuntimeDependency_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzInformaticaServerlessRuntimeDependency_CheckViaIdentityOrganization.cs │ │ │ │ │ ├── UpdateAzInformaticaOrganization_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzInformaticaOrganization_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzInformaticaOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzInformaticaOrganization_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzInformaticaServerlessRuntime_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzInformaticaServerlessRuntime_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzInformaticaServerlessRuntime_UpdateViaIdentityOrganizationExpanded.cs │ │ │ │ │ ├── UpdateAzInformaticaServerlessRuntime_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzInformaticaServerlessRuntime_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Informatica.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── KeyVault.Management.brown │ │ ├── DeletedManagedHsm.tsp │ │ ├── DeletedVault.tsp │ │ ├── Key.tsp │ │ ├── KeyVault.Management │ │ │ ├── DeletedManagedHsm.tsp │ │ │ ├── DeletedVault.tsp │ │ │ ├── Key.tsp │ │ │ ├── ManagedHsm.tsp │ │ │ ├── ManagedHsmKey.tsp │ │ │ ├── MhsmPrivateEndpointConnection.tsp │ │ │ ├── PrivateEndpointConnection.tsp │ │ │ ├── Secret.tsp │ │ │ ├── Vault.tsp │ │ │ ├── back-compatible.tsp │ │ │ ├── client.tsp │ │ │ ├── examples │ │ │ │ └── 2025-05-01 │ │ │ │ │ ├── DeletedManagedHsm_Get.json │ │ │ │ │ ├── DeletedManagedHsm_List.json │ │ │ │ │ ├── DeletedManagedHsm_Purge.json │ │ │ │ │ ├── ManagedHsm_CreateOrUpdate.json │ │ │ │ │ ├── ManagedHsm_Delete.json │ │ │ │ │ ├── ManagedHsm_Get.json │ │ │ │ │ ├── ManagedHsm_ListByResourceGroup.json │ │ │ │ │ ├── ManagedHsm_ListBySubscription.json │ │ │ │ │ ├── ManagedHsm_ListPrivateEndpointConnectionsByResource.json │ │ │ │ │ ├── ManagedHsm_ListRegionsByResource.json │ │ │ │ │ ├── ManagedHsm_Update.json │ │ │ │ │ ├── ManagedHsm_checkMhsmNameAvailability.json │ │ │ │ │ ├── ManagedHsm_deletePrivateEndpointConnection.json │ │ │ │ │ ├── ManagedHsm_getPrivateEndpointConnection.json │ │ │ │ │ ├── ManagedHsm_listPrivateLinkResources.json │ │ │ │ │ ├── ManagedHsm_putPrivateEndpointConnection.json │ │ │ │ │ ├── checkVaultNameAvailability.json │ │ │ │ │ ├── createKey.json │ │ │ │ │ ├── createSecret.json │ │ │ │ │ ├── createVault.json │ │ │ │ │ ├── createVaultWithNetworkAcls.json │ │ │ │ │ ├── deletePrivateEndpointConnection.json │ │ │ │ │ ├── deleteVault.json │ │ │ │ │ ├── getDeletedVault.json │ │ │ │ │ ├── getKey.json │ │ │ │ │ ├── getKeyVersion.json │ │ │ │ │ ├── getPrivateEndpointConnection.json │ │ │ │ │ ├── getSecret.json │ │ │ │ │ ├── getVault.json │ │ │ │ │ ├── listDeletedVaults.json │ │ │ │ │ ├── listKeyVersions.json │ │ │ │ │ ├── listKeys.json │ │ │ │ │ ├── listOperations.json │ │ │ │ │ ├── listPrivateEndpointConnection.json │ │ │ │ │ ├── listPrivateLinkResources.json │ │ │ │ │ ├── listSecrets.json │ │ │ │ │ ├── listVault.json │ │ │ │ │ ├── listVaultByResourceGroup.json │ │ │ │ │ ├── listVaultBySubscription.json │ │ │ │ │ ├── managedHsmCreateKey.json │ │ │ │ │ ├── managedHsmGetKey.json │ │ │ │ │ ├── managedHsmGetKeyVersion.json │ │ │ │ │ ├── managedHsmListKeyVersions.json │ │ │ │ │ ├── managedHsmListKeys.json │ │ │ │ │ ├── purgeDeletedVault.json │ │ │ │ │ ├── putPrivateEndpointConnection.json │ │ │ │ │ ├── updateAccessPoliciesAdd.json │ │ │ │ │ ├── updateSecret.json │ │ │ │ │ └── updateVault.json │ │ │ ├── main.tsp │ │ │ ├── models.tsp │ │ │ ├── routes.tsp │ │ │ └── tspconfig.yaml │ │ ├── ManagedHsm.tsp │ │ ├── ManagedHsmKey.tsp │ │ ├── MhsmPrivateEndpointConnection.tsp │ │ ├── PrivateEndpointConnection.tsp │ │ ├── Secret.tsp │ │ ├── Vault.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.KeyVault.csproj │ │ │ ├── Az.KeyVault.nuspec │ │ │ ├── Az.KeyVault.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.KeyVault.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── KeyVaultManagementClient.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AccessPolicyEntry.PowerShell.cs │ │ │ │ │ │ ├── AccessPolicyEntry.TypeConverter.cs │ │ │ │ │ │ ├── AccessPolicyEntry.cs │ │ │ │ │ │ ├── AccessPolicyEntry.json.cs │ │ │ │ │ │ ├── Action.PowerShell.cs │ │ │ │ │ │ ├── Action.TypeConverter.cs │ │ │ │ │ │ ├── Action.cs │ │ │ │ │ │ ├── Action.json.cs │ │ │ │ │ │ ├── Attributes.PowerShell.cs │ │ │ │ │ │ ├── Attributes.TypeConverter.cs │ │ │ │ │ │ ├── Attributes.cs │ │ │ │ │ │ ├── Attributes.json.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityParameters.PowerShell.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityParameters.TypeConverter.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityParameters.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityParameters.json.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityResult.PowerShell.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityResult.TypeConverter.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityResult.cs │ │ │ │ │ │ ├── CheckMhsmNameAvailabilityResult.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.json.cs │ │ │ │ │ │ ├── CloudError.PowerShell.cs │ │ │ │ │ │ ├── CloudError.TypeConverter.cs │ │ │ │ │ │ ├── CloudError.cs │ │ │ │ │ │ ├── CloudError.json.cs │ │ │ │ │ │ ├── CloudErrorBody.PowerShell.cs │ │ │ │ │ │ ├── CloudErrorBody.TypeConverter.cs │ │ │ │ │ │ ├── CloudErrorBody.cs │ │ │ │ │ │ ├── CloudErrorBody.json.cs │ │ │ │ │ │ ├── DeletedManagedHsm.PowerShell.cs │ │ │ │ │ │ ├── DeletedManagedHsm.TypeConverter.cs │ │ │ │ │ │ ├── DeletedManagedHsm.cs │ │ │ │ │ │ ├── DeletedManagedHsm.json.cs │ │ │ │ │ │ ├── DeletedManagedHsmListResult.PowerShell.cs │ │ │ │ │ │ ├── DeletedManagedHsmListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeletedManagedHsmListResult.cs │ │ │ │ │ │ ├── DeletedManagedHsmListResult.json.cs │ │ │ │ │ │ ├── DeletedManagedHsmProperties.PowerShell.cs │ │ │ │ │ │ ├── DeletedManagedHsmProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeletedManagedHsmProperties.cs │ │ │ │ │ │ ├── DeletedManagedHsmProperties.json.cs │ │ │ │ │ │ ├── DeletedManagedHsmPropertiesTags.PowerShell.cs │ │ │ │ │ │ ├── DeletedManagedHsmPropertiesTags.TypeConverter.cs │ │ │ │ │ │ ├── DeletedManagedHsmPropertiesTags.cs │ │ │ │ │ │ ├── DeletedManagedHsmPropertiesTags.dictionary.cs │ │ │ │ │ │ ├── DeletedManagedHsmPropertiesTags.json.cs │ │ │ │ │ │ ├── DeletedVault.PowerShell.cs │ │ │ │ │ │ ├── DeletedVault.TypeConverter.cs │ │ │ │ │ │ ├── DeletedVault.cs │ │ │ │ │ │ ├── DeletedVault.json.cs │ │ │ │ │ │ ├── DeletedVaultListResult.PowerShell.cs │ │ │ │ │ │ ├── DeletedVaultListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeletedVaultListResult.cs │ │ │ │ │ │ ├── DeletedVaultListResult.json.cs │ │ │ │ │ │ ├── DeletedVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── DeletedVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeletedVaultProperties.cs │ │ │ │ │ │ ├── DeletedVaultProperties.json.cs │ │ │ │ │ │ ├── DeletedVaultPropertiesTags.PowerShell.cs │ │ │ │ │ │ ├── DeletedVaultPropertiesTags.TypeConverter.cs │ │ │ │ │ │ ├── DeletedVaultPropertiesTags.cs │ │ │ │ │ │ ├── DeletedVaultPropertiesTags.dictionary.cs │ │ │ │ │ │ ├── DeletedVaultPropertiesTags.json.cs │ │ │ │ │ │ ├── DimensionProperties.PowerShell.cs │ │ │ │ │ │ ├── DimensionProperties.TypeConverter.cs │ │ │ │ │ │ ├── DimensionProperties.cs │ │ │ │ │ │ ├── DimensionProperties.json.cs │ │ │ │ │ │ ├── Error.PowerShell.cs │ │ │ │ │ │ ├── Error.TypeConverter.cs │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.json.cs │ │ │ │ │ │ ├── IPRule.PowerShell.cs │ │ │ │ │ │ ├── IPRule.TypeConverter.cs │ │ │ │ │ │ ├── IPRule.cs │ │ │ │ │ │ ├── IPRule.json.cs │ │ │ │ │ │ ├── Identity.PowerShell.cs │ │ │ │ │ │ ├── Identity.TypeConverter.cs │ │ │ │ │ │ ├── Identity.cs │ │ │ │ │ │ ├── Identity.json.cs │ │ │ │ │ │ ├── Key.PowerShell.cs │ │ │ │ │ │ ├── Key.TypeConverter.cs │ │ │ │ │ │ ├── Key.cs │ │ │ │ │ │ ├── Key.json.cs │ │ │ │ │ │ ├── KeyAttributes.PowerShell.cs │ │ │ │ │ │ ├── KeyAttributes.TypeConverter.cs │ │ │ │ │ │ ├── KeyAttributes.cs │ │ │ │ │ │ ├── KeyAttributes.json.cs │ │ │ │ │ │ ├── KeyCreateParameters.PowerShell.cs │ │ │ │ │ │ ├── KeyCreateParameters.TypeConverter.cs │ │ │ │ │ │ ├── KeyCreateParameters.cs │ │ │ │ │ │ ├── KeyCreateParameters.json.cs │ │ │ │ │ │ ├── KeyCreateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── KeyCreateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── KeyCreateParametersTags.cs │ │ │ │ │ │ ├── KeyCreateParametersTags.dictionary.cs │ │ │ │ │ │ ├── KeyCreateParametersTags.json.cs │ │ │ │ │ │ ├── KeyListResult.PowerShell.cs │ │ │ │ │ │ ├── KeyListResult.TypeConverter.cs │ │ │ │ │ │ ├── KeyListResult.cs │ │ │ │ │ │ ├── KeyListResult.json.cs │ │ │ │ │ │ ├── KeyProperties.PowerShell.cs │ │ │ │ │ │ ├── KeyProperties.TypeConverter.cs │ │ │ │ │ │ ├── KeyProperties.cs │ │ │ │ │ │ ├── KeyProperties.json.cs │ │ │ │ │ │ ├── KeyReleasePolicy.PowerShell.cs │ │ │ │ │ │ ├── KeyReleasePolicy.TypeConverter.cs │ │ │ │ │ │ ├── KeyReleasePolicy.cs │ │ │ │ │ │ ├── KeyReleasePolicy.json.cs │ │ │ │ │ │ ├── KeyRotationPolicyAttributes.PowerShell.cs │ │ │ │ │ │ ├── KeyRotationPolicyAttributes.TypeConverter.cs │ │ │ │ │ │ ├── KeyRotationPolicyAttributes.cs │ │ │ │ │ │ ├── KeyRotationPolicyAttributes.json.cs │ │ │ │ │ │ ├── KeyTags.PowerShell.cs │ │ │ │ │ │ ├── KeyTags.TypeConverter.cs │ │ │ │ │ │ ├── KeyTags.cs │ │ │ │ │ │ ├── KeyTags.dictionary.cs │ │ │ │ │ │ ├── KeyTags.json.cs │ │ │ │ │ │ ├── KeyVaultIdentity.PowerShell.cs │ │ │ │ │ │ ├── KeyVaultIdentity.TypeConverter.cs │ │ │ │ │ │ ├── KeyVaultIdentity.cs │ │ │ │ │ │ ├── KeyVaultIdentity.json.cs │ │ │ │ │ │ ├── LifetimeAction.PowerShell.cs │ │ │ │ │ │ ├── LifetimeAction.TypeConverter.cs │ │ │ │ │ │ ├── LifetimeAction.cs │ │ │ │ │ │ ├── LifetimeAction.json.cs │ │ │ │ │ │ ├── LogSpecification.PowerShell.cs │ │ │ │ │ │ ├── LogSpecification.TypeConverter.cs │ │ │ │ │ │ ├── LogSpecification.cs │ │ │ │ │ │ ├── LogSpecification.json.cs │ │ │ │ │ │ ├── ManagedHsm.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsm.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsm.cs │ │ │ │ │ │ ├── ManagedHsm.json.cs │ │ │ │ │ │ ├── ManagedHsmAction.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmAction.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmAction.cs │ │ │ │ │ │ ├── ManagedHsmAction.json.cs │ │ │ │ │ │ ├── ManagedHsmError.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmError.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmError.cs │ │ │ │ │ │ ├── ManagedHsmError.json.cs │ │ │ │ │ │ ├── ManagedHsmKey.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKey.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKey.cs │ │ │ │ │ │ ├── ManagedHsmKey.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyAttributes.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyAttributes.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyAttributes.cs │ │ │ │ │ │ ├── ManagedHsmKeyAttributes.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParameters.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParameters.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParameters.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParametersTags.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ManagedHsmKeyCreateParametersTags.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyListResult.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyListResult.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyListResult.cs │ │ │ │ │ │ ├── ManagedHsmKeyListResult.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyProperties.cs │ │ │ │ │ │ ├── ManagedHsmKeyProperties.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyReleasePolicy.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyReleasePolicy.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyReleasePolicy.cs │ │ │ │ │ │ ├── ManagedHsmKeyReleasePolicy.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyRotationPolicyAttributes.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyRotationPolicyAttributes.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyRotationPolicyAttributes.cs │ │ │ │ │ │ ├── ManagedHsmKeyRotationPolicyAttributes.json.cs │ │ │ │ │ │ ├── ManagedHsmKeyTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmKeyTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmKeyTags.cs │ │ │ │ │ │ ├── ManagedHsmKeyTags.dictionary.cs │ │ │ │ │ │ ├── ManagedHsmKeyTags.json.cs │ │ │ │ │ │ ├── ManagedHsmLifetimeAction.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmLifetimeAction.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmLifetimeAction.cs │ │ │ │ │ │ ├── ManagedHsmLifetimeAction.json.cs │ │ │ │ │ │ ├── ManagedHsmListResult.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmListResult.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmListResult.cs │ │ │ │ │ │ ├── ManagedHsmListResult.json.cs │ │ │ │ │ │ ├── ManagedHsmProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmProperties.cs │ │ │ │ │ │ ├── ManagedHsmProperties.json.cs │ │ │ │ │ │ ├── ManagedHsmResource.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmResource.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmResource.cs │ │ │ │ │ │ ├── ManagedHsmResource.json.cs │ │ │ │ │ │ ├── ManagedHsmResourceTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmResourceTags.cs │ │ │ │ │ │ ├── ManagedHsmResourceTags.dictionary.cs │ │ │ │ │ │ ├── ManagedHsmResourceTags.json.cs │ │ │ │ │ │ ├── ManagedHsmRotationPolicy.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmRotationPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmRotationPolicy.cs │ │ │ │ │ │ ├── ManagedHsmRotationPolicy.json.cs │ │ │ │ │ │ ├── ManagedHsmSecurityDomainProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmSecurityDomainProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmSecurityDomainProperties.cs │ │ │ │ │ │ ├── ManagedHsmSecurityDomainProperties.json.cs │ │ │ │ │ │ ├── ManagedHsmSku.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmSku.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmSku.cs │ │ │ │ │ │ ├── ManagedHsmSku.json.cs │ │ │ │ │ │ ├── ManagedHsmTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmTags.cs │ │ │ │ │ │ ├── ManagedHsmTags.dictionary.cs │ │ │ │ │ │ ├── ManagedHsmTags.json.cs │ │ │ │ │ │ ├── ManagedHsmTrigger.PowerShell.cs │ │ │ │ │ │ ├── ManagedHsmTrigger.TypeConverter.cs │ │ │ │ │ │ ├── ManagedHsmTrigger.cs │ │ │ │ │ │ ├── ManagedHsmTrigger.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MetricSpecification.PowerShell.cs │ │ │ │ │ │ ├── MetricSpecification.TypeConverter.cs │ │ │ │ │ │ ├── MetricSpecification.cs │ │ │ │ │ │ ├── MetricSpecification.json.cs │ │ │ │ │ │ ├── MhsmGeoReplicatedRegion.PowerShell.cs │ │ │ │ │ │ ├── MhsmGeoReplicatedRegion.TypeConverter.cs │ │ │ │ │ │ ├── MhsmGeoReplicatedRegion.cs │ │ │ │ │ │ ├── MhsmGeoReplicatedRegion.json.cs │ │ │ │ │ │ ├── MhsmNetworkRuleSet.PowerShell.cs │ │ │ │ │ │ ├── MhsmNetworkRuleSet.TypeConverter.cs │ │ │ │ │ │ ├── MhsmNetworkRuleSet.cs │ │ │ │ │ │ ├── MhsmNetworkRuleSet.json.cs │ │ │ │ │ │ ├── MhsmPrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateEndpoint.cs │ │ │ │ │ │ ├── MhsmPrivateEndpoint.json.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnection.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionItem.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionItem.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionItem.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionItem.json.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionTags.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionTags.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionTags.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionTags.dictionary.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionTags.json.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionsListResult.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionsListResult.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionsListResult.cs │ │ │ │ │ │ ├── MhsmPrivateEndpointConnectionsListResult.json.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResource.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResource.json.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── MhsmPrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── MhsmPrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── MhsmPrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── MhsmPrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── MhsmPrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── MhsmRegionsListResult.PowerShell.cs │ │ │ │ │ │ ├── MhsmRegionsListResult.TypeConverter.cs │ │ │ │ │ │ ├── MhsmRegionsListResult.cs │ │ │ │ │ │ ├── MhsmRegionsListResult.json.cs │ │ │ │ │ │ ├── MhsmServiceTagRule.PowerShell.cs │ │ │ │ │ │ ├── MhsmServiceTagRule.TypeConverter.cs │ │ │ │ │ │ ├── MhsmServiceTagRule.cs │ │ │ │ │ │ ├── MhsmServiceTagRule.json.cs │ │ │ │ │ │ ├── MhsmVirtualNetworkRule.PowerShell.cs │ │ │ │ │ │ ├── MhsmVirtualNetworkRule.TypeConverter.cs │ │ │ │ │ │ ├── MhsmVirtualNetworkRule.cs │ │ │ │ │ │ ├── MhsmVirtualNetworkRule.json.cs │ │ │ │ │ │ ├── MhsmipRule.PowerShell.cs │ │ │ │ │ │ ├── MhsmipRule.TypeConverter.cs │ │ │ │ │ │ ├── MhsmipRule.cs │ │ │ │ │ │ ├── MhsmipRule.json.cs │ │ │ │ │ │ ├── NetworkRuleSet.PowerShell.cs │ │ │ │ │ │ ├── NetworkRuleSet.TypeConverter.cs │ │ │ │ │ │ ├── NetworkRuleSet.cs │ │ │ │ │ │ ├── NetworkRuleSet.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationProperties.PowerShell.cs │ │ │ │ │ │ ├── OperationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OperationProperties.cs │ │ │ │ │ │ ├── OperationProperties.json.cs │ │ │ │ │ │ ├── Permissions.PowerShell.cs │ │ │ │ │ │ ├── Permissions.TypeConverter.cs │ │ │ │ │ │ ├── Permissions.cs │ │ │ │ │ │ ├── Permissions.json.cs │ │ │ │ │ │ ├── Plan.PowerShell.cs │ │ │ │ │ │ ├── Plan.TypeConverter.cs │ │ │ │ │ │ ├── Plan.cs │ │ │ │ │ │ ├── Plan.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionItem.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionItem.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionItem.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionItem.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionListResult.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionProperties.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionTags.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionTags.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionTags.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionTags.dictionary.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionTags.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.cs │ │ │ │ │ │ ├── PrivateLinkResourceListResult.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceTags.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceTags.cs │ │ │ │ │ │ ├── PrivateLinkResourceTags.dictionary.cs │ │ │ │ │ │ ├── PrivateLinkResourceTags.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── ResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── ResourceListResult.cs │ │ │ │ │ │ ├── ResourceListResult.json.cs │ │ │ │ │ │ ├── ResourceModelWithAllowedPropertySet.PowerShell.cs │ │ │ │ │ │ ├── ResourceModelWithAllowedPropertySet.TypeConverter.cs │ │ │ │ │ │ ├── ResourceModelWithAllowedPropertySet.cs │ │ │ │ │ │ ├── ResourceModelWithAllowedPropertySet.json.cs │ │ │ │ │ │ ├── RotationPolicy.PowerShell.cs │ │ │ │ │ │ ├── RotationPolicy.TypeConverter.cs │ │ │ │ │ │ ├── RotationPolicy.cs │ │ │ │ │ │ ├── RotationPolicy.json.cs │ │ │ │ │ │ ├── Secret.PowerShell.cs │ │ │ │ │ │ ├── Secret.TypeConverter.cs │ │ │ │ │ │ ├── Secret.cs │ │ │ │ │ │ ├── Secret.json.cs │ │ │ │ │ │ ├── SecretAttributes.PowerShell.cs │ │ │ │ │ │ ├── SecretAttributes.TypeConverter.cs │ │ │ │ │ │ ├── SecretAttributes.cs │ │ │ │ │ │ ├── SecretAttributes.json.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParameters.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParameters.json.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParametersTags.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── SecretCreateOrUpdateParametersTags.json.cs │ │ │ │ │ │ ├── SecretListResult.PowerShell.cs │ │ │ │ │ │ ├── SecretListResult.TypeConverter.cs │ │ │ │ │ │ ├── SecretListResult.cs │ │ │ │ │ │ ├── SecretListResult.json.cs │ │ │ │ │ │ ├── SecretPatchParameters.PowerShell.cs │ │ │ │ │ │ ├── SecretPatchParameters.TypeConverter.cs │ │ │ │ │ │ ├── SecretPatchParameters.cs │ │ │ │ │ │ ├── SecretPatchParameters.json.cs │ │ │ │ │ │ ├── SecretPatchParametersTags.PowerShell.cs │ │ │ │ │ │ ├── SecretPatchParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── SecretPatchParametersTags.cs │ │ │ │ │ │ ├── SecretPatchParametersTags.dictionary.cs │ │ │ │ │ │ ├── SecretPatchParametersTags.json.cs │ │ │ │ │ │ ├── SecretPatchProperties.PowerShell.cs │ │ │ │ │ │ ├── SecretPatchProperties.TypeConverter.cs │ │ │ │ │ │ ├── SecretPatchProperties.cs │ │ │ │ │ │ ├── SecretPatchProperties.json.cs │ │ │ │ │ │ ├── SecretProperties.PowerShell.cs │ │ │ │ │ │ ├── SecretProperties.TypeConverter.cs │ │ │ │ │ │ ├── SecretProperties.cs │ │ │ │ │ │ ├── SecretProperties.json.cs │ │ │ │ │ │ ├── SecretTags.PowerShell.cs │ │ │ │ │ │ ├── SecretTags.TypeConverter.cs │ │ │ │ │ │ ├── SecretTags.cs │ │ │ │ │ │ ├── SecretTags.dictionary.cs │ │ │ │ │ │ ├── SecretTags.json.cs │ │ │ │ │ │ ├── ServiceSpecification.PowerShell.cs │ │ │ │ │ │ ├── ServiceSpecification.TypeConverter.cs │ │ │ │ │ │ ├── ServiceSpecification.cs │ │ │ │ │ │ ├── ServiceSpecification.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── Sku1.PowerShell.cs │ │ │ │ │ │ ├── Sku1.TypeConverter.cs │ │ │ │ │ │ ├── Sku1.cs │ │ │ │ │ │ ├── Sku1.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── Trigger.PowerShell.cs │ │ │ │ │ │ ├── Trigger.TypeConverter.cs │ │ │ │ │ │ ├── Trigger.cs │ │ │ │ │ │ ├── Trigger.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── Vault.PowerShell.cs │ │ │ │ │ │ ├── Vault.TypeConverter.cs │ │ │ │ │ │ ├── Vault.cs │ │ │ │ │ │ ├── Vault.json.cs │ │ │ │ │ │ ├── VaultAccessPolicyParameters.PowerShell.cs │ │ │ │ │ │ ├── VaultAccessPolicyParameters.TypeConverter.cs │ │ │ │ │ │ ├── VaultAccessPolicyParameters.cs │ │ │ │ │ │ ├── VaultAccessPolicyParameters.json.cs │ │ │ │ │ │ ├── VaultAccessPolicyProperties.PowerShell.cs │ │ │ │ │ │ ├── VaultAccessPolicyProperties.TypeConverter.cs │ │ │ │ │ │ ├── VaultAccessPolicyProperties.cs │ │ │ │ │ │ ├── VaultAccessPolicyProperties.json.cs │ │ │ │ │ │ ├── VaultCheckNameAvailabilityParameters.PowerShell.cs │ │ │ │ │ │ ├── VaultCheckNameAvailabilityParameters.TypeConverter.cs │ │ │ │ │ │ ├── VaultCheckNameAvailabilityParameters.cs │ │ │ │ │ │ ├── VaultCheckNameAvailabilityParameters.json.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParameters.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParameters.json.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParametersTags.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── VaultCreateOrUpdateParametersTags.json.cs │ │ │ │ │ │ ├── VaultListResult.PowerShell.cs │ │ │ │ │ │ ├── VaultListResult.TypeConverter.cs │ │ │ │ │ │ ├── VaultListResult.cs │ │ │ │ │ │ ├── VaultListResult.json.cs │ │ │ │ │ │ ├── VaultPatchParameters.PowerShell.cs │ │ │ │ │ │ ├── VaultPatchParameters.TypeConverter.cs │ │ │ │ │ │ ├── VaultPatchParameters.cs │ │ │ │ │ │ ├── VaultPatchParameters.json.cs │ │ │ │ │ │ ├── VaultPatchParametersTags.PowerShell.cs │ │ │ │ │ │ ├── VaultPatchParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── VaultPatchParametersTags.cs │ │ │ │ │ │ ├── VaultPatchParametersTags.dictionary.cs │ │ │ │ │ │ ├── VaultPatchParametersTags.json.cs │ │ │ │ │ │ ├── VaultPatchProperties.PowerShell.cs │ │ │ │ │ │ ├── VaultPatchProperties.TypeConverter.cs │ │ │ │ │ │ ├── VaultPatchProperties.cs │ │ │ │ │ │ ├── VaultPatchProperties.json.cs │ │ │ │ │ │ ├── VaultProperties.PowerShell.cs │ │ │ │ │ │ ├── VaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── VaultProperties.cs │ │ │ │ │ │ ├── VaultProperties.json.cs │ │ │ │ │ │ ├── VaultTags.PowerShell.cs │ │ │ │ │ │ ├── VaultTags.TypeConverter.cs │ │ │ │ │ │ ├── VaultTags.cs │ │ │ │ │ │ ├── VaultTags.dictionary.cs │ │ │ │ │ │ ├── VaultTags.json.cs │ │ │ │ │ │ ├── VirtualNetworkRule.PowerShell.cs │ │ │ │ │ │ ├── VirtualNetworkRule.TypeConverter.cs │ │ │ │ │ │ ├── VirtualNetworkRule.cs │ │ │ │ │ │ └── VirtualNetworkRule.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── ClearAzKeyVaultDeleted_Purge.cs │ │ │ │ │ ├── ClearAzKeyVaultDeleted_PurgeViaIdentity.cs │ │ │ │ │ ├── ClearAzKeyVaultDeleted_PurgeViaIdentityLocation.cs │ │ │ │ │ ├── ClearAzKeyVaultManagedHsmDeleted_Purge.cs │ │ │ │ │ ├── ClearAzKeyVaultManagedHsmDeleted_PurgeViaIdentity.cs │ │ │ │ │ ├── ClearAzKeyVaultManagedHsmDeleted_PurgeViaIdentityLocation.cs │ │ │ │ │ ├── GetAzKeyVaultDeleted_Get.cs │ │ │ │ │ ├── GetAzKeyVaultDeleted_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultDeleted_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzKeyVaultDeleted_List.cs │ │ │ │ │ ├── GetAzKeyVaultKeyVersion_Get.cs │ │ │ │ │ ├── GetAzKeyVaultKeyVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultKeyVersion_GetViaIdentityKey.cs │ │ │ │ │ ├── GetAzKeyVaultKeyVersion_GetViaIdentityVault.cs │ │ │ │ │ ├── GetAzKeyVaultKeyVersion_List.cs │ │ │ │ │ ├── GetAzKeyVaultKey_Get.cs │ │ │ │ │ ├── GetAzKeyVaultKey_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultKey_GetViaIdentityVault.cs │ │ │ │ │ ├── GetAzKeyVaultKey_List.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmDeleted_Get.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmDeleted_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmDeleted_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmDeleted_List.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKeyVersion_Get.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKeyVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKeyVersion_GetViaIdentityKey.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKeyVersion_GetViaIdentityManagedHsMS.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKeyVersion_List.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKey_Get.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKey_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKey_GetViaIdentityManagedHsMS.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsmKey_List.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsm_Get.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsm_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsm_List.cs │ │ │ │ │ ├── GetAzKeyVaultManagedHsm_List1.cs │ │ │ │ │ ├── GetAzKeyVaultMhsmPrivateEndpointConnection_Get.cs │ │ │ │ │ ├── GetAzKeyVaultMhsmPrivateEndpointConnection_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultMhsmPrivateEndpointConnection_GetViaIdentityManagedHsMS.cs │ │ │ │ │ ├── GetAzKeyVaultMhsmPrivateEndpointConnection_List.cs │ │ │ │ │ ├── GetAzKeyVaultMhsmPrivateLinkResource_List.cs │ │ │ │ │ ├── GetAzKeyVaultMhsmRegion_List.cs │ │ │ │ │ ├── GetAzKeyVaultOperation_List.cs │ │ │ │ │ ├── GetAzKeyVaultSecret_Get.cs │ │ │ │ │ ├── GetAzKeyVaultSecret_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVaultSecret_GetViaIdentityVault.cs │ │ │ │ │ ├── GetAzKeyVaultSecret_List.cs │ │ │ │ │ ├── GetAzKeyVault_Get.cs │ │ │ │ │ ├── GetAzKeyVault_GetViaIdentity.cs │ │ │ │ │ ├── GetAzKeyVault_List.cs │ │ │ │ │ ├── GetAzKeyVault_List1.cs │ │ │ │ │ ├── GetAzKeyVault_List2.cs │ │ │ │ │ ├── NewAzKeyVaultKeyIfNotExist_CreateExpanded.cs │ │ │ │ │ ├── NewAzKeyVaultKeyIfNotExist_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzKeyVaultKeyIfNotExist_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzKeyVaultManagedHsmKeyIfNotExist_CreateExpanded.cs │ │ │ │ │ ├── NewAzKeyVaultManagedHsmKeyIfNotExist_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzKeyVaultManagedHsmKeyIfNotExist_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzKeyVaultManagedHsm_CreateExpanded.cs │ │ │ │ │ ├── NewAzKeyVaultManagedHsm_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzKeyVaultManagedHsm_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzKeyVaultSecret_CreateExpanded.cs │ │ │ │ │ ├── NewAzKeyVaultSecret_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzKeyVaultSecret_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzKeyVault_CreateExpanded.cs │ │ │ │ │ ├── NewAzKeyVault_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzKeyVault_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzKeyVaultManagedHsm_Delete.cs │ │ │ │ │ ├── RemoveAzKeyVaultManagedHsm_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzKeyVaultMhsmPrivateEndpointConnection_Delete.cs │ │ │ │ │ ├── RemoveAzKeyVaultMhsmPrivateEndpointConnection_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzKeyVaultMhsmPrivateEndpointConnection_DeleteViaIdentityManagedHsMS.cs │ │ │ │ │ ├── RemoveAzKeyVault_Delete.cs │ │ │ │ │ ├── RemoveAzKeyVault_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzKeyVaultAccessPolicy_UpdateExpanded.cs │ │ │ │ │ ├── SetAzKeyVaultAccessPolicy_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzKeyVaultAccessPolicy_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzKeyVaultManagedHsm_UpdateExpanded.cs │ │ │ │ │ ├── SetAzKeyVaultManagedHsm_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzKeyVaultManagedHsm_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzKeyVaultMhsmPrivateEndpointConnection_Put.cs │ │ │ │ │ ├── SetAzKeyVaultMhsmPrivateEndpointConnection_PutExpanded.cs │ │ │ │ │ ├── SetAzKeyVaultMhsmPrivateEndpointConnection_PutViaJsonFilePath.cs │ │ │ │ │ ├── SetAzKeyVaultMhsmPrivateEndpointConnection_PutViaJsonString.cs │ │ │ │ │ ├── SetAzKeyVaultSecret_UpdateExpanded.cs │ │ │ │ │ ├── SetAzKeyVaultSecret_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzKeyVaultSecret_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzKeyVault_UpdateExpanded.cs │ │ │ │ │ ├── SetAzKeyVault_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzKeyVault_UpdateViaJsonString.cs │ │ │ │ │ ├── TestAzKeyVaultManagedHsmMhsmNameAvailability_Check.cs │ │ │ │ │ ├── TestAzKeyVaultManagedHsmMhsmNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzKeyVaultManagedHsmMhsmNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzKeyVaultManagedHsmMhsmNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── TestAzKeyVaultNameAvailability_Check.cs │ │ │ │ │ ├── TestAzKeyVaultNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzKeyVaultNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzKeyVaultNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzKeyVaultManagedHsm_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultManagedHsm_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultManagedHsm_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzKeyVaultManagedHsm_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzKeyVaultMhsmPrivateEndpointConnection_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultMhsmPrivateEndpointConnection_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultMhsmPrivateEndpointConnection_UpdateViaIdentityManagedHsMSExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultSecret_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultSecret_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultSecret_UpdateViaIdentityVaultExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVaultSecret_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzKeyVaultSecret_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzKeyVault_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVault_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzKeyVault_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzKeyVault_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.KeyVault.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── KubernetesRuntime.Management │ │ ├── bgppeer.tsp │ │ ├── client.tsp │ │ ├── common.tsp │ │ ├── examples │ │ │ ├── 2023-10-01-preview │ │ │ │ ├── BgpPeers_CreateOrUpdate.json │ │ │ │ ├── BgpPeers_Delete.json │ │ │ │ ├── BgpPeers_Get.json │ │ │ │ ├── BgpPeers_List.json │ │ │ │ ├── LoadBalancers_CreateOrUpdate.json │ │ │ │ ├── LoadBalancers_Delete.json │ │ │ │ ├── LoadBalancers_Get.json │ │ │ │ ├── LoadBalancers_List.json │ │ │ │ ├── Operations_List.json │ │ │ │ ├── Services_CreateOrUpdate.json │ │ │ │ ├── Services_Delete.json │ │ │ │ ├── Services_Get.json │ │ │ │ ├── Services_List.json │ │ │ │ ├── StorageClass_CreateOrUpdate.json │ │ │ │ ├── StorageClass_Delete.json │ │ │ │ ├── StorageClass_Get.json │ │ │ │ ├── StorageClass_List.json │ │ │ │ └── StorageClass_Update.json │ │ │ └── 2024-03-01 │ │ │ │ ├── BgpPeers_CreateOrUpdate.json │ │ │ │ ├── BgpPeers_Delete.json │ │ │ │ ├── BgpPeers_Get.json │ │ │ │ ├── BgpPeers_List.json │ │ │ │ ├── LoadBalancers_CreateOrUpdate.json │ │ │ │ ├── LoadBalancers_Delete.json │ │ │ │ ├── LoadBalancers_Get.json │ │ │ │ ├── LoadBalancers_List.json │ │ │ │ ├── Operations_List.json │ │ │ │ ├── Services_CreateOrUpdate.json │ │ │ │ ├── Services_Delete.json │ │ │ │ ├── Services_Get.json │ │ │ │ ├── Services_List.json │ │ │ │ ├── StorageClass_CreateOrUpdate.json │ │ │ │ ├── StorageClass_Delete.json │ │ │ │ ├── StorageClass_Get.json │ │ │ │ ├── StorageClass_List.json │ │ │ │ └── StorageClass_Update.json │ │ ├── loadbalancer.tsp │ │ ├── main.tsp │ │ ├── service.tsp │ │ ├── storageclass.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.ContainerOrchestratorRuntime.csproj │ │ │ ├── Az.ContainerOrchestratorRuntime.nuspec │ │ │ ├── Az.ContainerOrchestratorRuntime.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.ContainerOrchestratorRuntime.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftKubernetesRuntime.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── BgpPeer.PowerShell.cs │ │ │ │ │ │ ├── BgpPeer.TypeConverter.cs │ │ │ │ │ │ ├── BgpPeer.cs │ │ │ │ │ │ ├── BgpPeer.json.cs │ │ │ │ │ │ ├── BgpPeerListResult.PowerShell.cs │ │ │ │ │ │ ├── BgpPeerListResult.TypeConverter.cs │ │ │ │ │ │ ├── BgpPeerListResult.cs │ │ │ │ │ │ ├── BgpPeerListResult.json.cs │ │ │ │ │ │ ├── BgpPeerProperties.PowerShell.cs │ │ │ │ │ │ ├── BgpPeerProperties.TypeConverter.cs │ │ │ │ │ │ ├── BgpPeerProperties.cs │ │ │ │ │ │ ├── BgpPeerProperties.json.cs │ │ │ │ │ │ ├── BlobStorageClassTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── BlobStorageClassTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── BlobStorageClassTypeProperties.cs │ │ │ │ │ │ ├── BlobStorageClassTypeProperties.json.cs │ │ │ │ │ │ ├── ContainerOrchestratorRuntimeIdentity.PowerShell.cs │ │ │ │ │ │ ├── ContainerOrchestratorRuntimeIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ContainerOrchestratorRuntimeIdentity.cs │ │ │ │ │ │ ├── ContainerOrchestratorRuntimeIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExtensionResource.PowerShell.cs │ │ │ │ │ │ ├── ExtensionResource.TypeConverter.cs │ │ │ │ │ │ ├── ExtensionResource.cs │ │ │ │ │ │ ├── ExtensionResource.json.cs │ │ │ │ │ │ ├── LoadBalancer.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancer.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancer.cs │ │ │ │ │ │ ├── LoadBalancer.json.cs │ │ │ │ │ │ ├── LoadBalancerListResult.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancerListResult.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancerListResult.cs │ │ │ │ │ │ ├── LoadBalancerListResult.json.cs │ │ │ │ │ │ ├── LoadBalancerProperties.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancerProperties.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancerProperties.cs │ │ │ │ │ │ ├── LoadBalancerProperties.json.cs │ │ │ │ │ │ ├── LoadBalancerPropertiesServiceSelector.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancerPropertiesServiceSelector.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancerPropertiesServiceSelector.cs │ │ │ │ │ │ ├── LoadBalancerPropertiesServiceSelector.dictionary.cs │ │ │ │ │ │ ├── LoadBalancerPropertiesServiceSelector.json.cs │ │ │ │ │ │ ├── NativeStorageClassTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── NativeStorageClassTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── NativeStorageClassTypeProperties.cs │ │ │ │ │ │ ├── NativeStorageClassTypeProperties.json.cs │ │ │ │ │ │ ├── NfsStorageClassTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── NfsStorageClassTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── NfsStorageClassTypeProperties.cs │ │ │ │ │ │ ├── NfsStorageClassTypeProperties.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── RwxStorageClassTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── RwxStorageClassTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── RwxStorageClassTypeProperties.cs │ │ │ │ │ │ ├── RwxStorageClassTypeProperties.json.cs │ │ │ │ │ │ ├── ServiceProperties.PowerShell.cs │ │ │ │ │ │ ├── ServiceProperties.TypeConverter.cs │ │ │ │ │ │ ├── ServiceProperties.cs │ │ │ │ │ │ ├── ServiceProperties.json.cs │ │ │ │ │ │ ├── ServiceResource.PowerShell.cs │ │ │ │ │ │ ├── ServiceResource.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResource.cs │ │ │ │ │ │ ├── ServiceResource.json.cs │ │ │ │ │ │ ├── ServiceResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── ServiceResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResourceListResult.cs │ │ │ │ │ │ ├── ServiceResourceListResult.json.cs │ │ │ │ │ │ ├── SmbStorageClassTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── SmbStorageClassTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── SmbStorageClassTypeProperties.cs │ │ │ │ │ │ ├── SmbStorageClassTypeProperties.json.cs │ │ │ │ │ │ ├── StorageClassDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── StorageClassDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── StorageClassDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── StorageClassProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageClassProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassProperties.cs │ │ │ │ │ │ ├── StorageClassProperties.json.cs │ │ │ │ │ │ ├── StorageClassPropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── StorageClassPropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassPropertiesUpdate.cs │ │ │ │ │ │ ├── StorageClassPropertiesUpdate.json.cs │ │ │ │ │ │ ├── StorageClassResource.PowerShell.cs │ │ │ │ │ │ ├── StorageClassResource.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassResource.cs │ │ │ │ │ │ ├── StorageClassResource.json.cs │ │ │ │ │ │ ├── StorageClassResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── StorageClassResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassResourceListResult.cs │ │ │ │ │ │ ├── StorageClassResourceListResult.json.cs │ │ │ │ │ │ ├── StorageClassResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── StorageClassResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassResourceUpdate.cs │ │ │ │ │ │ ├── StorageClassResourceUpdate.json.cs │ │ │ │ │ │ ├── StorageClassTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageClassTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassTypeProperties.cs │ │ │ │ │ │ ├── StorageClassTypeProperties.json.cs │ │ │ │ │ │ ├── StorageClassTypePropertiesUpdate.PowerShell.cs │ │ │ │ │ │ ├── StorageClassTypePropertiesUpdate.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassTypePropertiesUpdate.cs │ │ │ │ │ │ ├── StorageClassTypePropertiesUpdate.json.cs │ │ │ │ │ │ ├── StorageClassUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── StorageClassUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── StorageClassUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── StorageClassUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ └── SystemData.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeBgpPeer_Get.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeBgpPeer_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeBgpPeer_List.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeLoadBalancer_Get.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeLoadBalancer_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeLoadBalancer_List.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeOperation_List.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeService_Get.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeService_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeService_List.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeStorageClass_Get.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeStorageClass_GetViaIdentity.cs │ │ │ │ │ ├── GetAzContainerOrchestratorRuntimeStorageClass_List.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeBgpPeer_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeBgpPeer_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeBgpPeer_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeBgpPeer_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeLoadBalancer_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeLoadBalancer_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeLoadBalancer_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeLoadBalancer_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeService_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeService_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeService_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeService_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeStorageClass_CreateExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeStorageClass_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeStorageClass_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzContainerOrchestratorRuntimeStorageClass_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeBgpPeer_Delete.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeBgpPeer_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeLoadBalancer_Delete.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeLoadBalancer_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeService_Delete.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeService_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeStorageClass_Delete.cs │ │ │ │ │ ├── RemoveAzContainerOrchestratorRuntimeStorageClass_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeBgpPeer_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeBgpPeer_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeBgpPeer_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeLoadBalancer_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeLoadBalancer_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeLoadBalancer_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeService_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeService_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeService_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeStorageClass_UpdateExpanded.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeStorageClass_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzContainerOrchestratorRuntimeStorageClass_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeBgpPeer_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeBgpPeer_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeLoadBalancer_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeLoadBalancer_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeService_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeService_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeStorageClass_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeStorageClass_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzContainerOrchestratorRuntimeStorageClass_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzContainerOrchestratorRuntimeStorageClass_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.ContainerOrchestratorRuntime.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── LambdaTest.HyperExecute.Management │ │ ├── .gitignore │ │ ├── examples │ │ │ └── 2024-02-01-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MinimumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.LambdaTest.csproj │ │ │ ├── Az.LambdaTest.nuspec │ │ │ ├── Az.LambdaTest.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.LambdaTest.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── LambdaTestHyperExecuteManagementService.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── LambdaTestIdentity.PowerShell.cs │ │ │ │ │ │ ├── LambdaTestIdentity.TypeConverter.cs │ │ │ │ │ │ ├── LambdaTestIdentity.cs │ │ │ │ │ │ ├── LambdaTestIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── OfferDetails.PowerShell.cs │ │ │ │ │ │ ├── OfferDetails.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetails.cs │ │ │ │ │ │ ├── OfferDetails.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── OrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationProperties.cs │ │ │ │ │ │ ├── OrganizationProperties.json.cs │ │ │ │ │ │ ├── OrganizationResource.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResource.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResource.cs │ │ │ │ │ │ ├── OrganizationResource.json.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.json.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PartnerProperties.PowerShell.cs │ │ │ │ │ │ ├── PartnerProperties.TypeConverter.cs │ │ │ │ │ │ ├── PartnerProperties.cs │ │ │ │ │ │ ├── PartnerProperties.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.PowerShell.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.TypeConverter.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ └── UserDetails.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzLambdaTestOperation_List.cs │ │ │ │ │ ├── GetAzLambdaTestOrganization_Get.cs │ │ │ │ │ ├── GetAzLambdaTestOrganization_GetViaIdentity.cs │ │ │ │ │ ├── GetAzLambdaTestOrganization_List.cs │ │ │ │ │ ├── GetAzLambdaTestOrganization_List1.cs │ │ │ │ │ ├── NewAzLambdaTestOrganization_CreateExpanded.cs │ │ │ │ │ ├── NewAzLambdaTestOrganization_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzLambdaTestOrganization_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzLambdaTestOrganization_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzLambdaTestOrganization_Delete.cs │ │ │ │ │ ├── RemoveAzLambdaTestOrganization_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzLambdaTestOrganization_UpdateExpanded.cs │ │ │ │ │ ├── SetAzLambdaTestOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzLambdaTestOrganization_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzLambdaTestOrganization_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzLambdaTestOrganization_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.LambdaTest.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Liftr.WeightsAndBiases.Management │ │ ├── .gitignore │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-09-18-preview │ │ │ │ ├── Instances_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Instances_Delete_MaximumSet_Gen.json │ │ │ │ ├── Instances_Get_MaximumSet_Gen.json │ │ │ │ ├── Instances_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Instances_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Instances_Update_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ └── Operations_List_MinimumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.WeightsBiases.csproj │ │ │ ├── Az.WeightsBiases.nuspec │ │ │ ├── Az.WeightsBiases.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.WeightsBiases.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftWeightsAndBiasesManagementService.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── InstanceProperties.PowerShell.cs │ │ │ │ │ │ ├── InstanceProperties.TypeConverter.cs │ │ │ │ │ │ ├── InstanceProperties.cs │ │ │ │ │ │ ├── InstanceProperties.json.cs │ │ │ │ │ │ ├── InstanceResource.PowerShell.cs │ │ │ │ │ │ ├── InstanceResource.TypeConverter.cs │ │ │ │ │ │ ├── InstanceResource.cs │ │ │ │ │ │ ├── InstanceResource.json.cs │ │ │ │ │ │ ├── InstanceResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── InstanceResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── InstanceResourceListResult.cs │ │ │ │ │ │ ├── InstanceResourceListResult.json.cs │ │ │ │ │ │ ├── InstanceResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── InstanceResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── InstanceResourceUpdate.cs │ │ │ │ │ │ ├── InstanceResourceUpdate.json.cs │ │ │ │ │ │ ├── InstanceResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── InstanceResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── InstanceResourceUpdateTags.cs │ │ │ │ │ │ ├── InstanceResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── InstanceResourceUpdateTags.json.cs │ │ │ │ │ │ ├── InstancesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── InstancesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── InstancesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── InstancesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── OfferDetails.PowerShell.cs │ │ │ │ │ │ ├── OfferDetails.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetails.cs │ │ │ │ │ │ ├── OfferDetails.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PartnerProperties.PowerShell.cs │ │ │ │ │ │ ├── PartnerProperties.TypeConverter.cs │ │ │ │ │ │ ├── PartnerProperties.cs │ │ │ │ │ │ ├── PartnerProperties.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.PowerShell.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.TypeConverter.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ ├── UserDetails.json.cs │ │ │ │ │ │ ├── WeightsBiasesIdentity.PowerShell.cs │ │ │ │ │ │ ├── WeightsBiasesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── WeightsBiasesIdentity.cs │ │ │ │ │ │ └── WeightsBiasesIdentity.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzWeightsBiasesInstance_Get.cs │ │ │ │ │ ├── GetAzWeightsBiasesInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzWeightsBiasesInstance_List.cs │ │ │ │ │ ├── GetAzWeightsBiasesInstance_List1.cs │ │ │ │ │ ├── GetAzWeightsBiasesOperation_List.cs │ │ │ │ │ ├── NewAzWeightsBiasesInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzWeightsBiasesInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzWeightsBiasesInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzWeightsBiasesInstance_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzWeightsBiasesInstance_Delete.cs │ │ │ │ │ ├── RemoveAzWeightsBiasesInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzWeightsBiasesInstance_UpdateExpanded.cs │ │ │ │ │ ├── SetAzWeightsBiasesInstance_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzWeightsBiasesInstance_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzWeightsBiasesInstance_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzWeightsBiasesInstance_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.WeightsBiases.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Microsoft.AVS.Management.brown │ │ ├── addons.tsp │ │ ├── authorizations.tsp │ │ ├── client.tsp │ │ ├── cloudLinks.tsp │ │ ├── clusters.tsp │ │ ├── common.tsp │ │ ├── datastores.tsp │ │ ├── globalReachConnections.tsp │ │ ├── hcxEnterpriseSites.tsp │ │ ├── hosts.tsp │ │ ├── iscsiPaths.tsp │ │ ├── locations.tsp │ │ ├── main.tsp │ │ ├── placementPolicies.tsp │ │ ├── privateClouds.tsp │ │ ├── provisionedNetworks.tsp │ │ ├── pureStoragePolicies.tsp │ │ ├── scriptCmdlets.tsp │ │ ├── scriptExecutions.tsp │ │ ├── scriptPackages.tsp │ │ ├── skus.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.VMware.csproj │ │ │ ├── Az.VMware.nuspec │ │ │ ├── Az.VMware.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.VMware.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── AzureVMwareSolutionApi.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Addon.PowerShell.cs │ │ │ │ │ │ ├── Addon.TypeConverter.cs │ │ │ │ │ │ ├── Addon.cs │ │ │ │ │ │ ├── Addon.json.cs │ │ │ │ │ │ ├── AddonArcProperties.PowerShell.cs │ │ │ │ │ │ ├── AddonArcProperties.TypeConverter.cs │ │ │ │ │ │ ├── AddonArcProperties.cs │ │ │ │ │ │ ├── AddonArcProperties.json.cs │ │ │ │ │ │ ├── AddonHcxProperties.PowerShell.cs │ │ │ │ │ │ ├── AddonHcxProperties.TypeConverter.cs │ │ │ │ │ │ ├── AddonHcxProperties.cs │ │ │ │ │ │ ├── AddonHcxProperties.json.cs │ │ │ │ │ │ ├── AddonList.PowerShell.cs │ │ │ │ │ │ ├── AddonList.TypeConverter.cs │ │ │ │ │ │ ├── AddonList.cs │ │ │ │ │ │ ├── AddonList.json.cs │ │ │ │ │ │ ├── AddonProperties.PowerShell.cs │ │ │ │ │ │ ├── AddonProperties.TypeConverter.cs │ │ │ │ │ │ ├── AddonProperties.cs │ │ │ │ │ │ ├── AddonProperties.json.cs │ │ │ │ │ │ ├── AddonSrmProperties.PowerShell.cs │ │ │ │ │ │ ├── AddonSrmProperties.TypeConverter.cs │ │ │ │ │ │ ├── AddonSrmProperties.cs │ │ │ │ │ │ ├── AddonSrmProperties.json.cs │ │ │ │ │ │ ├── AddonVrProperties.PowerShell.cs │ │ │ │ │ │ ├── AddonVrProperties.TypeConverter.cs │ │ │ │ │ │ ├── AddonVrProperties.cs │ │ │ │ │ │ ├── AddonVrProperties.json.cs │ │ │ │ │ │ ├── AdminCredentials.PowerShell.cs │ │ │ │ │ │ ├── AdminCredentials.TypeConverter.cs │ │ │ │ │ │ ├── AdminCredentials.cs │ │ │ │ │ │ ├── AdminCredentials.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AvailabilityProperties.PowerShell.cs │ │ │ │ │ │ ├── AvailabilityProperties.TypeConverter.cs │ │ │ │ │ │ ├── AvailabilityProperties.cs │ │ │ │ │ │ ├── AvailabilityProperties.json.cs │ │ │ │ │ │ ├── Circuit.PowerShell.cs │ │ │ │ │ │ ├── Circuit.TypeConverter.cs │ │ │ │ │ │ ├── Circuit.cs │ │ │ │ │ │ ├── Circuit.json.cs │ │ │ │ │ │ ├── CloudLink.PowerShell.cs │ │ │ │ │ │ ├── CloudLink.TypeConverter.cs │ │ │ │ │ │ ├── CloudLink.cs │ │ │ │ │ │ ├── CloudLink.json.cs │ │ │ │ │ │ ├── CloudLinkList.PowerShell.cs │ │ │ │ │ │ ├── CloudLinkList.TypeConverter.cs │ │ │ │ │ │ ├── CloudLinkList.cs │ │ │ │ │ │ ├── CloudLinkList.json.cs │ │ │ │ │ │ ├── CloudLinkProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudLinkProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudLinkProperties.cs │ │ │ │ │ │ ├── CloudLinkProperties.json.cs │ │ │ │ │ │ ├── Cluster.PowerShell.cs │ │ │ │ │ │ ├── Cluster.TypeConverter.cs │ │ │ │ │ │ ├── Cluster.cs │ │ │ │ │ │ ├── Cluster.json.cs │ │ │ │ │ │ ├── ClusterList.PowerShell.cs │ │ │ │ │ │ ├── ClusterList.TypeConverter.cs │ │ │ │ │ │ ├── ClusterList.cs │ │ │ │ │ │ ├── ClusterList.json.cs │ │ │ │ │ │ ├── ClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── ClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── ClusterProperties.cs │ │ │ │ │ │ ├── ClusterProperties.json.cs │ │ │ │ │ │ ├── ClusterUpdate.PowerShell.cs │ │ │ │ │ │ ├── ClusterUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ClusterUpdate.cs │ │ │ │ │ │ ├── ClusterUpdate.json.cs │ │ │ │ │ │ ├── ClusterUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── ClusterUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── ClusterUpdateProperties.cs │ │ │ │ │ │ ├── ClusterUpdateProperties.json.cs │ │ │ │ │ │ ├── ClusterZone.PowerShell.cs │ │ │ │ │ │ ├── ClusterZone.TypeConverter.cs │ │ │ │ │ │ ├── ClusterZone.cs │ │ │ │ │ │ ├── ClusterZone.json.cs │ │ │ │ │ │ ├── ClusterZoneList.PowerShell.cs │ │ │ │ │ │ ├── ClusterZoneList.TypeConverter.cs │ │ │ │ │ │ ├── ClusterZoneList.cs │ │ │ │ │ │ ├── ClusterZoneList.json.cs │ │ │ │ │ │ ├── Datastore.PowerShell.cs │ │ │ │ │ │ ├── Datastore.TypeConverter.cs │ │ │ │ │ │ ├── Datastore.cs │ │ │ │ │ │ ├── Datastore.json.cs │ │ │ │ │ │ ├── DatastoreList.PowerShell.cs │ │ │ │ │ │ ├── DatastoreList.TypeConverter.cs │ │ │ │ │ │ ├── DatastoreList.cs │ │ │ │ │ │ ├── DatastoreList.json.cs │ │ │ │ │ │ ├── DatastoreProperties.PowerShell.cs │ │ │ │ │ │ ├── DatastoreProperties.TypeConverter.cs │ │ │ │ │ │ ├── DatastoreProperties.cs │ │ │ │ │ │ ├── DatastoreProperties.json.cs │ │ │ │ │ │ ├── DiskPoolVolume.PowerShell.cs │ │ │ │ │ │ ├── DiskPoolVolume.TypeConverter.cs │ │ │ │ │ │ ├── DiskPoolVolume.cs │ │ │ │ │ │ ├── DiskPoolVolume.json.cs │ │ │ │ │ │ ├── ElasticSanVolume.PowerShell.cs │ │ │ │ │ │ ├── ElasticSanVolume.TypeConverter.cs │ │ │ │ │ │ ├── ElasticSanVolume.cs │ │ │ │ │ │ ├── ElasticSanVolume.json.cs │ │ │ │ │ │ ├── Encryption.PowerShell.cs │ │ │ │ │ │ ├── Encryption.TypeConverter.cs │ │ │ │ │ │ ├── Encryption.cs │ │ │ │ │ │ ├── Encryption.json.cs │ │ │ │ │ │ ├── EncryptionKeyVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── EncryptionKeyVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionKeyVaultProperties.cs │ │ │ │ │ │ ├── EncryptionKeyVaultProperties.json.cs │ │ │ │ │ │ ├── Endpoints.PowerShell.cs │ │ │ │ │ │ ├── Endpoints.TypeConverter.cs │ │ │ │ │ │ ├── Endpoints.cs │ │ │ │ │ │ ├── Endpoints.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExpressRouteAuthorization.PowerShell.cs │ │ │ │ │ │ ├── ExpressRouteAuthorization.TypeConverter.cs │ │ │ │ │ │ ├── ExpressRouteAuthorization.cs │ │ │ │ │ │ ├── ExpressRouteAuthorization.json.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationList.PowerShell.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationList.TypeConverter.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationList.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationList.json.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationProperties.PowerShell.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationProperties.cs │ │ │ │ │ │ ├── ExpressRouteAuthorizationProperties.json.cs │ │ │ │ │ │ ├── GeneralHostProperties.PowerShell.cs │ │ │ │ │ │ ├── GeneralHostProperties.TypeConverter.cs │ │ │ │ │ │ ├── GeneralHostProperties.cs │ │ │ │ │ │ ├── GeneralHostProperties.json.cs │ │ │ │ │ │ ├── GlobalReachConnection.PowerShell.cs │ │ │ │ │ │ ├── GlobalReachConnection.TypeConverter.cs │ │ │ │ │ │ ├── GlobalReachConnection.cs │ │ │ │ │ │ ├── GlobalReachConnection.json.cs │ │ │ │ │ │ ├── GlobalReachConnectionList.PowerShell.cs │ │ │ │ │ │ ├── GlobalReachConnectionList.TypeConverter.cs │ │ │ │ │ │ ├── GlobalReachConnectionList.cs │ │ │ │ │ │ ├── GlobalReachConnectionList.json.cs │ │ │ │ │ │ ├── GlobalReachConnectionProperties.PowerShell.cs │ │ │ │ │ │ ├── GlobalReachConnectionProperties.TypeConverter.cs │ │ │ │ │ │ ├── GlobalReachConnectionProperties.cs │ │ │ │ │ │ ├── GlobalReachConnectionProperties.json.cs │ │ │ │ │ │ ├── HcxEnterpriseSite.PowerShell.cs │ │ │ │ │ │ ├── HcxEnterpriseSite.TypeConverter.cs │ │ │ │ │ │ ├── HcxEnterpriseSite.cs │ │ │ │ │ │ ├── HcxEnterpriseSite.json.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteList.PowerShell.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteList.TypeConverter.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteList.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteList.json.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteProperties.PowerShell.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteProperties.TypeConverter.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteProperties.cs │ │ │ │ │ │ ├── HcxEnterpriseSiteProperties.json.cs │ │ │ │ │ │ ├── Host.PowerShell.cs │ │ │ │ │ │ ├── Host.TypeConverter.cs │ │ │ │ │ │ ├── Host.cs │ │ │ │ │ │ ├── Host.json.cs │ │ │ │ │ │ ├── HostListResult.PowerShell.cs │ │ │ │ │ │ ├── HostListResult.TypeConverter.cs │ │ │ │ │ │ ├── HostListResult.cs │ │ │ │ │ │ ├── HostListResult.json.cs │ │ │ │ │ │ ├── HostProperties.PowerShell.cs │ │ │ │ │ │ ├── HostProperties.TypeConverter.cs │ │ │ │ │ │ ├── HostProperties.cs │ │ │ │ │ │ ├── HostProperties.json.cs │ │ │ │ │ │ ├── IdentitySource.PowerShell.cs │ │ │ │ │ │ ├── IdentitySource.TypeConverter.cs │ │ │ │ │ │ ├── IdentitySource.cs │ │ │ │ │ │ ├── IdentitySource.json.cs │ │ │ │ │ │ ├── IscsiPath.PowerShell.cs │ │ │ │ │ │ ├── IscsiPath.TypeConverter.cs │ │ │ │ │ │ ├── IscsiPath.cs │ │ │ │ │ │ ├── IscsiPath.json.cs │ │ │ │ │ │ ├── IscsiPathListResult.PowerShell.cs │ │ │ │ │ │ ├── IscsiPathListResult.TypeConverter.cs │ │ │ │ │ │ ├── IscsiPathListResult.cs │ │ │ │ │ │ ├── IscsiPathListResult.json.cs │ │ │ │ │ │ ├── IscsiPathProperties.PowerShell.cs │ │ │ │ │ │ ├── IscsiPathProperties.TypeConverter.cs │ │ │ │ │ │ ├── IscsiPathProperties.cs │ │ │ │ │ │ ├── IscsiPathProperties.json.cs │ │ │ │ │ │ ├── ManagementCluster.PowerShell.cs │ │ │ │ │ │ ├── ManagementCluster.TypeConverter.cs │ │ │ │ │ │ ├── ManagementCluster.cs │ │ │ │ │ │ ├── ManagementCluster.json.cs │ │ │ │ │ │ ├── NetAppVolume.PowerShell.cs │ │ │ │ │ │ ├── NetAppVolume.TypeConverter.cs │ │ │ │ │ │ ├── NetAppVolume.cs │ │ │ │ │ │ ├── NetAppVolume.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PagedResourceSku.PowerShell.cs │ │ │ │ │ │ ├── PagedResourceSku.TypeConverter.cs │ │ │ │ │ │ ├── PagedResourceSku.cs │ │ │ │ │ │ ├── PagedResourceSku.json.cs │ │ │ │ │ │ ├── PlacementPoliciesList.PowerShell.cs │ │ │ │ │ │ ├── PlacementPoliciesList.TypeConverter.cs │ │ │ │ │ │ ├── PlacementPoliciesList.cs │ │ │ │ │ │ ├── PlacementPoliciesList.json.cs │ │ │ │ │ │ ├── PlacementPolicy.PowerShell.cs │ │ │ │ │ │ ├── PlacementPolicy.TypeConverter.cs │ │ │ │ │ │ ├── PlacementPolicy.cs │ │ │ │ │ │ ├── PlacementPolicy.json.cs │ │ │ │ │ │ ├── PlacementPolicyProperties.PowerShell.cs │ │ │ │ │ │ ├── PlacementPolicyProperties.TypeConverter.cs │ │ │ │ │ │ ├── PlacementPolicyProperties.cs │ │ │ │ │ │ ├── PlacementPolicyProperties.json.cs │ │ │ │ │ │ ├── PlacementPolicyUpdate.PowerShell.cs │ │ │ │ │ │ ├── PlacementPolicyUpdate.TypeConverter.cs │ │ │ │ │ │ ├── PlacementPolicyUpdate.cs │ │ │ │ │ │ ├── PlacementPolicyUpdate.json.cs │ │ │ │ │ │ ├── PlacementPolicyUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── PlacementPolicyUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── PlacementPolicyUpdateProperties.cs │ │ │ │ │ │ ├── PlacementPolicyUpdateProperties.json.cs │ │ │ │ │ │ ├── PrivateCloud.PowerShell.cs │ │ │ │ │ │ ├── PrivateCloud.TypeConverter.cs │ │ │ │ │ │ ├── PrivateCloud.cs │ │ │ │ │ │ ├── PrivateCloud.json.cs │ │ │ │ │ │ ├── PrivateCloudList.PowerShell.cs │ │ │ │ │ │ ├── PrivateCloudList.TypeConverter.cs │ │ │ │ │ │ ├── PrivateCloudList.cs │ │ │ │ │ │ ├── PrivateCloudList.json.cs │ │ │ │ │ │ ├── PrivateCloudProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateCloudProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateCloudProperties.cs │ │ │ │ │ │ ├── PrivateCloudProperties.json.cs │ │ │ │ │ │ ├── PrivateCloudUpdate.PowerShell.cs │ │ │ │ │ │ ├── PrivateCloudUpdate.TypeConverter.cs │ │ │ │ │ │ ├── PrivateCloudUpdate.cs │ │ │ │ │ │ ├── PrivateCloudUpdate.json.cs │ │ │ │ │ │ ├── PrivateCloudUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateCloudUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateCloudUpdateProperties.cs │ │ │ │ │ │ ├── PrivateCloudUpdateProperties.json.cs │ │ │ │ │ │ ├── PrivateCloudUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── PrivateCloudUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── PrivateCloudUpdateTags.cs │ │ │ │ │ │ ├── PrivateCloudUpdateTags.dictionary.cs │ │ │ │ │ │ ├── PrivateCloudUpdateTags.json.cs │ │ │ │ │ │ ├── ProvisionedNetwork.PowerShell.cs │ │ │ │ │ │ ├── ProvisionedNetwork.TypeConverter.cs │ │ │ │ │ │ ├── ProvisionedNetwork.cs │ │ │ │ │ │ ├── ProvisionedNetwork.json.cs │ │ │ │ │ │ ├── ProvisionedNetworkListResult.PowerShell.cs │ │ │ │ │ │ ├── ProvisionedNetworkListResult.TypeConverter.cs │ │ │ │ │ │ ├── ProvisionedNetworkListResult.cs │ │ │ │ │ │ ├── ProvisionedNetworkListResult.json.cs │ │ │ │ │ │ ├── ProvisionedNetworkProperties.PowerShell.cs │ │ │ │ │ │ ├── ProvisionedNetworkProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProvisionedNetworkProperties.cs │ │ │ │ │ │ ├── ProvisionedNetworkProperties.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── PsCredentialExecutionParameter.PowerShell.cs │ │ │ │ │ │ ├── PsCredentialExecutionParameter.TypeConverter.cs │ │ │ │ │ │ ├── PsCredentialExecutionParameter.cs │ │ │ │ │ │ ├── PsCredentialExecutionParameter.json.cs │ │ │ │ │ │ ├── PureStoragePolicy.PowerShell.cs │ │ │ │ │ │ ├── PureStoragePolicy.TypeConverter.cs │ │ │ │ │ │ ├── PureStoragePolicy.cs │ │ │ │ │ │ ├── PureStoragePolicy.json.cs │ │ │ │ │ │ ├── PureStoragePolicyListResult.PowerShell.cs │ │ │ │ │ │ ├── PureStoragePolicyListResult.TypeConverter.cs │ │ │ │ │ │ ├── PureStoragePolicyListResult.cs │ │ │ │ │ │ ├── PureStoragePolicyListResult.json.cs │ │ │ │ │ │ ├── PureStoragePolicyProperties.PowerShell.cs │ │ │ │ │ │ ├── PureStoragePolicyProperties.TypeConverter.cs │ │ │ │ │ │ ├── PureStoragePolicyProperties.cs │ │ │ │ │ │ ├── PureStoragePolicyProperties.json.cs │ │ │ │ │ │ ├── PureStorageVolume.PowerShell.cs │ │ │ │ │ │ ├── PureStorageVolume.TypeConverter.cs │ │ │ │ │ │ ├── PureStorageVolume.cs │ │ │ │ │ │ ├── PureStorageVolume.json.cs │ │ │ │ │ │ ├── Quota.PowerShell.cs │ │ │ │ │ │ ├── Quota.TypeConverter.cs │ │ │ │ │ │ ├── Quota.cs │ │ │ │ │ │ ├── Quota.json.cs │ │ │ │ │ │ ├── QuotaHostsRemaining.PowerShell.cs │ │ │ │ │ │ ├── QuotaHostsRemaining.TypeConverter.cs │ │ │ │ │ │ ├── QuotaHostsRemaining.cs │ │ │ │ │ │ ├── QuotaHostsRemaining.dictionary.cs │ │ │ │ │ │ ├── QuotaHostsRemaining.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceSku.PowerShell.cs │ │ │ │ │ │ ├── ResourceSku.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSku.cs │ │ │ │ │ │ ├── ResourceSku.json.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.json.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.json.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.json.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.json.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.json.cs │ │ │ │ │ │ ├── ScriptCmdlet.PowerShell.cs │ │ │ │ │ │ ├── ScriptCmdlet.TypeConverter.cs │ │ │ │ │ │ ├── ScriptCmdlet.cs │ │ │ │ │ │ ├── ScriptCmdlet.json.cs │ │ │ │ │ │ ├── ScriptCmdletProperties.PowerShell.cs │ │ │ │ │ │ ├── ScriptCmdletProperties.TypeConverter.cs │ │ │ │ │ │ ├── ScriptCmdletProperties.cs │ │ │ │ │ │ ├── ScriptCmdletProperties.json.cs │ │ │ │ │ │ ├── ScriptCmdletsList.PowerShell.cs │ │ │ │ │ │ ├── ScriptCmdletsList.TypeConverter.cs │ │ │ │ │ │ ├── ScriptCmdletsList.cs │ │ │ │ │ │ ├── ScriptCmdletsList.json.cs │ │ │ │ │ │ ├── ScriptExecution.PowerShell.cs │ │ │ │ │ │ ├── ScriptExecution.TypeConverter.cs │ │ │ │ │ │ ├── ScriptExecution.cs │ │ │ │ │ │ ├── ScriptExecution.json.cs │ │ │ │ │ │ ├── ScriptExecutionParameter.PowerShell.cs │ │ │ │ │ │ ├── ScriptExecutionParameter.TypeConverter.cs │ │ │ │ │ │ ├── ScriptExecutionParameter.cs │ │ │ │ │ │ ├── ScriptExecutionParameter.json.cs │ │ │ │ │ │ ├── ScriptExecutionProperties.PowerShell.cs │ │ │ │ │ │ ├── ScriptExecutionProperties.TypeConverter.cs │ │ │ │ │ │ ├── ScriptExecutionProperties.cs │ │ │ │ │ │ ├── ScriptExecutionProperties.json.cs │ │ │ │ │ │ ├── ScriptExecutionPropertiesNamedOutputs.PowerShell.cs │ │ │ │ │ │ ├── ScriptExecutionPropertiesNamedOutputs.TypeConverter.cs │ │ │ │ │ │ ├── ScriptExecutionPropertiesNamedOutputs.cs │ │ │ │ │ │ ├── ScriptExecutionPropertiesNamedOutputs.dictionary.cs │ │ │ │ │ │ ├── ScriptExecutionPropertiesNamedOutputs.json.cs │ │ │ │ │ │ ├── ScriptExecutionsList.PowerShell.cs │ │ │ │ │ │ ├── ScriptExecutionsList.TypeConverter.cs │ │ │ │ │ │ ├── ScriptExecutionsList.cs │ │ │ │ │ │ ├── ScriptExecutionsList.json.cs │ │ │ │ │ │ ├── ScriptPackage.PowerShell.cs │ │ │ │ │ │ ├── ScriptPackage.TypeConverter.cs │ │ │ │ │ │ ├── ScriptPackage.cs │ │ │ │ │ │ ├── ScriptPackage.json.cs │ │ │ │ │ │ ├── ScriptPackageProperties.PowerShell.cs │ │ │ │ │ │ ├── ScriptPackageProperties.TypeConverter.cs │ │ │ │ │ │ ├── ScriptPackageProperties.cs │ │ │ │ │ │ ├── ScriptPackageProperties.json.cs │ │ │ │ │ │ ├── ScriptPackagesList.PowerShell.cs │ │ │ │ │ │ ├── ScriptPackagesList.TypeConverter.cs │ │ │ │ │ │ ├── ScriptPackagesList.cs │ │ │ │ │ │ ├── ScriptPackagesList.json.cs │ │ │ │ │ │ ├── ScriptParameter.PowerShell.cs │ │ │ │ │ │ ├── ScriptParameter.TypeConverter.cs │ │ │ │ │ │ ├── ScriptParameter.cs │ │ │ │ │ │ ├── ScriptParameter.json.cs │ │ │ │ │ │ ├── ScriptSecureStringExecutionParameter.PowerShell.cs │ │ │ │ │ │ ├── ScriptSecureStringExecutionParameter.TypeConverter.cs │ │ │ │ │ │ ├── ScriptSecureStringExecutionParameter.cs │ │ │ │ │ │ ├── ScriptSecureStringExecutionParameter.json.cs │ │ │ │ │ │ ├── ScriptStringExecutionParameter.PowerShell.cs │ │ │ │ │ │ ├── ScriptStringExecutionParameter.TypeConverter.cs │ │ │ │ │ │ ├── ScriptStringExecutionParameter.cs │ │ │ │ │ │ ├── ScriptStringExecutionParameter.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── SpecializedHostProperties.PowerShell.cs │ │ │ │ │ │ ├── SpecializedHostProperties.TypeConverter.cs │ │ │ │ │ │ ├── SpecializedHostProperties.cs │ │ │ │ │ │ ├── SpecializedHostProperties.json.cs │ │ │ │ │ │ ├── SystemAssignedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── SystemAssignedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── SystemAssignedServiceIdentity.cs │ │ │ │ │ │ ├── SystemAssignedServiceIdentity.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── Trial.PowerShell.cs │ │ │ │ │ │ ├── Trial.TypeConverter.cs │ │ │ │ │ │ ├── Trial.cs │ │ │ │ │ │ ├── Trial.json.cs │ │ │ │ │ │ ├── VMHostPlacementPolicyProperties.PowerShell.cs │ │ │ │ │ │ ├── VMHostPlacementPolicyProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMHostPlacementPolicyProperties.cs │ │ │ │ │ │ ├── VMHostPlacementPolicyProperties.json.cs │ │ │ │ │ │ ├── VMPlacementPolicyProperties.PowerShell.cs │ │ │ │ │ │ ├── VMPlacementPolicyProperties.TypeConverter.cs │ │ │ │ │ │ ├── VMPlacementPolicyProperties.cs │ │ │ │ │ │ ├── VMPlacementPolicyProperties.json.cs │ │ │ │ │ │ ├── VMwareIdentity.PowerShell.cs │ │ │ │ │ │ ├── VMwareIdentity.TypeConverter.cs │ │ │ │ │ │ ├── VMwareIdentity.cs │ │ │ │ │ │ ├── VMwareIdentity.json.cs │ │ │ │ │ │ ├── VirtualMachine.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachine.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachine.cs │ │ │ │ │ │ ├── VirtualMachine.json.cs │ │ │ │ │ │ ├── VirtualMachineProperties.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineProperties.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineProperties.cs │ │ │ │ │ │ ├── VirtualMachineProperties.json.cs │ │ │ │ │ │ ├── VirtualMachineRestrictMovement.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineRestrictMovement.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineRestrictMovement.cs │ │ │ │ │ │ ├── VirtualMachineRestrictMovement.json.cs │ │ │ │ │ │ ├── VirtualMachinesList.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachinesList.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachinesList.cs │ │ │ │ │ │ ├── VirtualMachinesList.json.cs │ │ │ │ │ │ ├── WorkloadNetwork.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetwork.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetwork.cs │ │ │ │ │ │ ├── WorkloadNetwork.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcp.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcp.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcp.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcp.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpEntity.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpEntity.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpEntity.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpEntity.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpList.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpRelay.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpRelay.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpRelay.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpRelay.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpServer.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpServer.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpServer.cs │ │ │ │ │ │ ├── WorkloadNetworkDhcpServer.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsService.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsService.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsService.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsService.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServiceProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServiceProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServiceProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServiceProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServicesList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServicesList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServicesList.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsServicesList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZone.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZone.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZone.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZone.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZoneProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZoneProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZoneProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZoneProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZonesList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZonesList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZonesList.cs │ │ │ │ │ │ ├── WorkloadNetworkDnsZonesList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkGateway.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkGateway.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkGateway.cs │ │ │ │ │ │ ├── WorkloadNetworkGateway.json.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayList.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkGatewayProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkList.cs │ │ │ │ │ │ ├── WorkloadNetworkList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroring.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroring.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroring.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroring.json.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringList.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkPortMirroringProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIP.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIP.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIP.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIP.json.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPsList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPsList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPsList.cs │ │ │ │ │ │ ├── WorkloadNetworkPublicIPsList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkSegment.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkSegment.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkSegment.cs │ │ │ │ │ │ ├── WorkloadNetworkSegment.json.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentPortVif.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentPortVif.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentPortVif.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentPortVif.json.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentSubnet.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentSubnet.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentSubnet.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentSubnet.json.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentsList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentsList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentsList.cs │ │ │ │ │ │ ├── WorkloadNetworkSegmentsList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroup.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroup.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroup.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroup.json.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupsList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupsList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupsList.cs │ │ │ │ │ │ ├── WorkloadNetworkVMGroupsList.json.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachine.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachine.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachine.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachine.json.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachineProperties.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachineProperties.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachineProperties.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachineProperties.json.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachinesList.PowerShell.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachinesList.TypeConverter.cs │ │ │ │ │ │ ├── WorkloadNetworkVirtualMachinesList.cs │ │ │ │ │ │ └── WorkloadNetworkVirtualMachinesList.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzVMwareAddon_Get.cs │ │ │ │ │ ├── GetAzVMwareAddon_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareAddon_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareAddon_List.cs │ │ │ │ │ ├── GetAzVMwareAuthorization_Get.cs │ │ │ │ │ ├── GetAzVMwareAuthorization_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareAuthorization_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareAuthorization_List.cs │ │ │ │ │ ├── GetAzVMwareCloudLink_Get.cs │ │ │ │ │ ├── GetAzVMwareCloudLink_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareCloudLink_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareCloudLink_List.cs │ │ │ │ │ ├── GetAzVMwareClusterZone_List.cs │ │ │ │ │ ├── GetAzVMwareCluster_Get.cs │ │ │ │ │ ├── GetAzVMwareCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareCluster_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareCluster_List.cs │ │ │ │ │ ├── GetAzVMwareDatastore_Get.cs │ │ │ │ │ ├── GetAzVMwareDatastore_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareDatastore_GetViaIdentityCluster.cs │ │ │ │ │ ├── GetAzVMwareDatastore_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareDatastore_List.cs │ │ │ │ │ ├── GetAzVMwareGlobalReachConnection_Get.cs │ │ │ │ │ ├── GetAzVMwareGlobalReachConnection_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareGlobalReachConnection_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareGlobalReachConnection_List.cs │ │ │ │ │ ├── GetAzVMwareHcxEnterpriseSite_Get.cs │ │ │ │ │ ├── GetAzVMwareHcxEnterpriseSite_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareHcxEnterpriseSite_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareHcxEnterpriseSite_List.cs │ │ │ │ │ ├── GetAzVMwareHost_Get.cs │ │ │ │ │ ├── GetAzVMwareHost_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareHost_GetViaIdentityCluster.cs │ │ │ │ │ ├── GetAzVMwareHost_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareHost_List.cs │ │ │ │ │ ├── GetAzVMwareIscsiPath_Get.cs │ │ │ │ │ ├── GetAzVMwareIscsiPath_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareIscsiPath_List.cs │ │ │ │ │ ├── GetAzVMwareOperation_List.cs │ │ │ │ │ ├── GetAzVMwarePlacementPolicy_Get.cs │ │ │ │ │ ├── GetAzVMwarePlacementPolicy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwarePlacementPolicy_GetViaIdentityCluster.cs │ │ │ │ │ ├── GetAzVMwarePlacementPolicy_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwarePlacementPolicy_List.cs │ │ │ │ │ ├── GetAzVMwarePrivateCloudAdminCredentials_List.cs │ │ │ │ │ ├── GetAzVMwarePrivateCloud_Get.cs │ │ │ │ │ ├── GetAzVMwarePrivateCloud_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwarePrivateCloud_List.cs │ │ │ │ │ ├── GetAzVMwarePrivateCloud_List1.cs │ │ │ │ │ ├── GetAzVMwareProvisionedNetwork_Get.cs │ │ │ │ │ ├── GetAzVMwareProvisionedNetwork_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareProvisionedNetwork_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareProvisionedNetwork_List.cs │ │ │ │ │ ├── GetAzVMwarePureStoragePolicy_Get.cs │ │ │ │ │ ├── GetAzVMwarePureStoragePolicy_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwarePureStoragePolicy_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwarePureStoragePolicy_List.cs │ │ │ │ │ ├── GetAzVMwareScriptCmdlet_Get.cs │ │ │ │ │ ├── GetAzVMwareScriptCmdlet_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareScriptCmdlet_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareScriptCmdlet_GetViaIdentityScriptPackage.cs │ │ │ │ │ ├── GetAzVMwareScriptCmdlet_List.cs │ │ │ │ │ ├── GetAzVMwareScriptExecutionLog_Get.cs │ │ │ │ │ ├── GetAzVMwareScriptExecutionLog_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareScriptExecutionLog_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareScriptExecutionLog_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzVMwareScriptExecutionLog_GetViaJsonString.cs │ │ │ │ │ ├── GetAzVMwareScriptExecution_Get.cs │ │ │ │ │ ├── GetAzVMwareScriptExecution_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareScriptExecution_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareScriptExecution_List.cs │ │ │ │ │ ├── GetAzVMwareScriptPackage_Get.cs │ │ │ │ │ ├── GetAzVMwareScriptPackage_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareScriptPackage_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareScriptPackage_List.cs │ │ │ │ │ ├── GetAzVMwareSku_List.cs │ │ │ │ │ ├── GetAzVMwareVirtualMachine_Get.cs │ │ │ │ │ ├── GetAzVMwareVirtualMachine_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareVirtualMachine_GetViaIdentityCluster.cs │ │ │ │ │ ├── GetAzVMwareVirtualMachine_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareVirtualMachine_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDhcp_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDhcp_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDhcp_GetViaIdentityDhcpConfiguration.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDhcp_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsService_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsService_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsService_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsService_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsZone_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsZone_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsZone_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkDnsZone_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkGateway_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkGateway_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkGateway_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkGateway_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPortMirroring_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPortMirroring_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPortMirroring_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPortMirroring_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPublicIP_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPublicIP_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPublicIP_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkPublicIP_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkSegment_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkSegment_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkSegment_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkSegment_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVMGroup_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVMGroup_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVMGroup_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVMGroup_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVirtualMachine_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVirtualMachine_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVirtualMachine_GetViaIdentityPrivateCloud.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetworkVirtualMachine_List.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetwork_Get.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetwork_GetViaIdentity.cs │ │ │ │ │ ├── GetAzVMwareWorkloadNetwork_List.cs │ │ │ │ │ ├── InvokeAzVMwareRotatePrivateCloudNsxtPassword_Rotate.cs │ │ │ │ │ ├── InvokeAzVMwareRotatePrivateCloudNsxtPassword_RotateViaIdentity.cs │ │ │ │ │ ├── InvokeAzVMwareRotatePrivateCloudVcenterPassword_Rotate.cs │ │ │ │ │ ├── InvokeAzVMwareRotatePrivateCloudVcenterPassword_RotateViaIdentity.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_Restrict.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictExpanded.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaIdentity.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaIdentityCluster.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaIdentityClusterExpanded.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaIdentityExpanded.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaIdentityPrivateCloud.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaJsonFilePath.cs │ │ │ │ │ ├── LockAzVMwareVirtualMachineMovement_RestrictViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareAddon_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareAddon_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareAddon_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareAddon_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareAuthorization_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareAuthorization_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareAuthorization_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareAuthorization_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareCloudLink_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareCloudLink_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareCloudLink_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareCloudLink_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareCluster_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareCluster_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareDatastore_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareDatastore_CreateViaIdentityClusterExpanded.cs │ │ │ │ │ ├── NewAzVMwareDatastore_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareDatastore_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareDatastore_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareGlobalReachConnection_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareGlobalReachConnection_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareGlobalReachConnection_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareGlobalReachConnection_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareHcxEnterpriseSite_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareHcxEnterpriseSite_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareHcxEnterpriseSite_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareHcxEnterpriseSite_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareIscsiPath_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareIscsiPath_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareIscsiPath_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwarePlacementPolicy_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwarePlacementPolicy_CreateViaIdentityClusterExpanded.cs │ │ │ │ │ ├── NewAzVMwarePlacementPolicy_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwarePlacementPolicy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwarePlacementPolicy_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwarePrivateCloud_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwarePrivateCloud_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwarePrivateCloud_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwarePureStoragePolicy_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwarePureStoragePolicy_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwarePureStoragePolicy_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwarePureStoragePolicy_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareScriptExecution_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareScriptExecution_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareScriptExecution_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareScriptExecution_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDhcp_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDhcp_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDhcp_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDhcp_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsService_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsService_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsService_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsService_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsZone_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsZone_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsZone_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkDnsZone_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPortMirroring_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPortMirroring_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPortMirroring_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPortMirroring_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPublicIP_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPublicIP_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPublicIP_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkPublicIP_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkSegment_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkSegment_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkSegment_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkSegment_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkVMGroup_CreateExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkVMGroup_CreateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkVMGroup_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzVMwareWorkloadNetworkVMGroup_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzVMwareAddon_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareAddon_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareAddon_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareAuthorization_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareAuthorization_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareAuthorization_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareCloudLink_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareCloudLink_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareCloudLink_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareCluster_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareCluster_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareDatastore_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareDatastore_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareDatastore_DeleteViaIdentityCluster.cs │ │ │ │ │ ├── RemoveAzVMwareDatastore_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareGlobalReachConnection_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareGlobalReachConnection_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareGlobalReachConnection_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareHcxEnterpriseSite_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareHcxEnterpriseSite_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareHcxEnterpriseSite_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareIscsiPath_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareIscsiPath_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwarePlacementPolicy_Delete.cs │ │ │ │ │ ├── RemoveAzVMwarePlacementPolicy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwarePlacementPolicy_DeleteViaIdentityCluster.cs │ │ │ │ │ ├── RemoveAzVMwarePlacementPolicy_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwarePrivateCloud_Delete.cs │ │ │ │ │ ├── RemoveAzVMwarePrivateCloud_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwarePureStoragePolicy_Delete.cs │ │ │ │ │ ├── RemoveAzVMwarePureStoragePolicy_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwarePureStoragePolicy_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareScriptExecution_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareScriptExecution_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareScriptExecution_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDhcp_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDhcp_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDhcp_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDnsService_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDnsService_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDnsService_DeleteViaIdentityDnsService.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDnsZone_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDnsZone_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkDnsZone_DeleteViaIdentityDnsZone.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkPortMirroring_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkPortMirroring_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkPortMirroring_DeleteViaIdentityPortMirroringProfile.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkPublicIP_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkPublicIP_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkPublicIP_DeleteViaIdentityPublicIP.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkSegment_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkSegment_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkSegment_DeleteViaIdentityPrivateCloud.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkVMGroup_Delete.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkVMGroup_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzVMwareWorkloadNetworkVMGroup_DeleteViaIdentityVMGroup.cs │ │ │ │ │ ├── TestAzVMwareLocationQuotaAvailability_Check.cs │ │ │ │ │ ├── TestAzVMwareLocationQuotaAvailability_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzVMwareLocationTrialAvailability_Check.cs │ │ │ │ │ ├── TestAzVMwareLocationTrialAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzVMwareLocationTrialAvailability_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzVMwareLocationTrialAvailability_CheckViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzVMwareLocationTrialAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzVMwareLocationTrialAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareAddon_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareAddon_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareAddon_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareAuthorization_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareAuthorization_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareAuthorization_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCloudLink_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCloudLink_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCloudLink_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCluster_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwareCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareDatastore_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareDatastore_UpdateViaIdentityClusterExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareDatastore_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareDatastore_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareGlobalReachConnection_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareGlobalReachConnection_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareGlobalReachConnection_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareHcxEnterpriseSite_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareHcxEnterpriseSite_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareHcxEnterpriseSite_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareIscsiPath_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareIscsiPath_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePlacementPolicy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePlacementPolicy_UpdateViaIdentityClusterExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePlacementPolicy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePlacementPolicy_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePlacementPolicy_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwarePlacementPolicy_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwarePrivateCloud_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePrivateCloud_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePureStoragePolicy_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePureStoragePolicy_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwarePureStoragePolicy_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareScriptExecution_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareScriptExecution_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareScriptExecution_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDhcp_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDhcp_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDhcp_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDhcp_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDhcp_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsService_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsService_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsService_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsService_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsService_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsZone_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsZone_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsZone_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsZone_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkDnsZone_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkPortMirroring_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkPortMirroring_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkPortMirroring_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkPortMirroring_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkPortMirroring_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkSegment_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkSegment_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkSegment_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkSegment_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkSegment_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkVMGroup_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkVMGroup_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkVMGroup_UpdateViaIdentityPrivateCloudExpanded.cs │ │ │ │ │ ├── UpdateAzVMwareWorkloadNetworkVMGroup_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzVMwareWorkloadNetworkVMGroup_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.VMware.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ ├── tspconfig.yaml │ │ ├── virtualMachines.tsp │ │ ├── workloadNetworks-dhcpConfigurations.tsp │ │ ├── workloadNetworks-dnsServices.tsp │ │ ├── workloadNetworks-dnsZones.tsp │ │ ├── workloadNetworks-gateways.tsp │ │ ├── workloadNetworks-portMirroringProfiles.tsp │ │ ├── workloadNetworks-publicIPs.tsp │ │ ├── workloadNetworks-segments.tsp │ │ ├── workloadNetworks-virtualMachines.tsp │ │ ├── workloadNetworks-vmGroups.tsp │ │ └── workloadNetworks.tsp │ ├── Microsoft.DevOpsInfrastructure.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2023-12-13-preview │ │ │ │ ├── CreateOrUpdatePool.json │ │ │ │ ├── DeletePool.json │ │ │ │ ├── GetPool.json │ │ │ │ ├── ListOperations.json │ │ │ │ ├── ListPoolsBySubscription.json │ │ │ │ ├── ListPoolsBySubscriptionAndResourceGroup.json │ │ │ │ └── UpdatePool.json │ │ │ ├── 2024-03-26-preview │ │ │ │ ├── CreateOrUpdatePool.json │ │ │ │ ├── DeletePool.json │ │ │ │ ├── GetPool.json │ │ │ │ ├── ListOperations.json │ │ │ │ ├── ListPoolsBySubscription.json │ │ │ │ ├── ListPoolsBySubscriptionAndResourceGroup.json │ │ │ │ ├── ResourceDetails_ListByPool.json │ │ │ │ ├── Sku_ListByLocation.json │ │ │ │ └── UpdatePool.json │ │ │ ├── 2024-04-04-preview │ │ │ │ ├── CreateOrUpdatePool.json │ │ │ │ ├── DeletePool.json │ │ │ │ ├── GetPool.json │ │ │ │ ├── ImageVersions_ListByImage.json │ │ │ │ ├── ListOperations.json │ │ │ │ ├── ListPoolsBySubscription.json │ │ │ │ ├── ListPoolsBySubscriptionAndResourceGroup.json │ │ │ │ ├── ResourceDetails_ListByPool.json │ │ │ │ ├── Sku_ListByLocation.json │ │ │ │ ├── SubscriptionUsages_Usages.json │ │ │ │ └── UpdatePool.json │ │ │ └── 2024-10-19 │ │ │ │ ├── CreateOrUpdatePool.json │ │ │ │ ├── DeletePool.json │ │ │ │ ├── GetPool.json │ │ │ │ ├── ImageVersions_ListByImage.json │ │ │ │ ├── ListOperations.json │ │ │ │ ├── ListPoolsBySubscription.json │ │ │ │ ├── ListPoolsBySubscriptionAndResourceGroup.json │ │ │ │ ├── ResourceDetails_ListByPool.json │ │ │ │ ├── Sku_ListByLocation.json │ │ │ │ ├── SubscriptionUsages_Usages.json │ │ │ │ └── UpdatePool.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.DevOpsInfrastructure.csproj │ │ │ ├── Az.DevOpsInfrastructure.nuspec │ │ │ ├── Az.DevOpsInfrastructure.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.DevOpsInfrastructure.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── ManagedDevOpsInfrastructure.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AgentProfile.PowerShell.cs │ │ │ │ │ │ ├── AgentProfile.TypeConverter.cs │ │ │ │ │ │ ├── AgentProfile.cs │ │ │ │ │ │ ├── AgentProfile.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AutomaticResourcePredictionsProfile.PowerShell.cs │ │ │ │ │ │ ├── AutomaticResourcePredictionsProfile.TypeConverter.cs │ │ │ │ │ │ ├── AutomaticResourcePredictionsProfile.cs │ │ │ │ │ │ ├── AutomaticResourcePredictionsProfile.json.cs │ │ │ │ │ │ ├── AzureDevOpsOrganizationProfile.PowerShell.cs │ │ │ │ │ │ ├── AzureDevOpsOrganizationProfile.TypeConverter.cs │ │ │ │ │ │ ├── AzureDevOpsOrganizationProfile.cs │ │ │ │ │ │ ├── AzureDevOpsOrganizationProfile.json.cs │ │ │ │ │ │ ├── AzureDevOpsPermissionProfile.PowerShell.cs │ │ │ │ │ │ ├── AzureDevOpsPermissionProfile.TypeConverter.cs │ │ │ │ │ │ ├── AzureDevOpsPermissionProfile.cs │ │ │ │ │ │ ├── AzureDevOpsPermissionProfile.json.cs │ │ │ │ │ │ ├── CheckNameAvailability.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailability.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailability.cs │ │ │ │ │ │ ├── CheckNameAvailability.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.json.cs │ │ │ │ │ │ ├── DataDisk.PowerShell.cs │ │ │ │ │ │ ├── DataDisk.TypeConverter.cs │ │ │ │ │ │ ├── DataDisk.cs │ │ │ │ │ │ ├── DataDisk.json.cs │ │ │ │ │ │ ├── DevOpsAzureSku.PowerShell.cs │ │ │ │ │ │ ├── DevOpsAzureSku.TypeConverter.cs │ │ │ │ │ │ ├── DevOpsAzureSku.cs │ │ │ │ │ │ ├── DevOpsAzureSku.json.cs │ │ │ │ │ │ ├── DevOpsInfrastructureIdentity.PowerShell.cs │ │ │ │ │ │ ├── DevOpsInfrastructureIdentity.TypeConverter.cs │ │ │ │ │ │ ├── DevOpsInfrastructureIdentity.cs │ │ │ │ │ │ ├── DevOpsInfrastructureIdentity.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── FabricProfile.PowerShell.cs │ │ │ │ │ │ ├── FabricProfile.TypeConverter.cs │ │ │ │ │ │ ├── FabricProfile.cs │ │ │ │ │ │ ├── FabricProfile.json.cs │ │ │ │ │ │ ├── GitHubOrganization.PowerShell.cs │ │ │ │ │ │ ├── GitHubOrganization.TypeConverter.cs │ │ │ │ │ │ ├── GitHubOrganization.cs │ │ │ │ │ │ ├── GitHubOrganization.json.cs │ │ │ │ │ │ ├── GitHubOrganizationProfile.PowerShell.cs │ │ │ │ │ │ ├── GitHubOrganizationProfile.TypeConverter.cs │ │ │ │ │ │ ├── GitHubOrganizationProfile.cs │ │ │ │ │ │ ├── GitHubOrganizationProfile.json.cs │ │ │ │ │ │ ├── ImageVersion.PowerShell.cs │ │ │ │ │ │ ├── ImageVersion.TypeConverter.cs │ │ │ │ │ │ ├── ImageVersion.cs │ │ │ │ │ │ ├── ImageVersion.json.cs │ │ │ │ │ │ ├── ImageVersionListResult.PowerShell.cs │ │ │ │ │ │ ├── ImageVersionListResult.TypeConverter.cs │ │ │ │ │ │ ├── ImageVersionListResult.cs │ │ │ │ │ │ ├── ImageVersionListResult.json.cs │ │ │ │ │ │ ├── ImageVersionProperties.PowerShell.cs │ │ │ │ │ │ ├── ImageVersionProperties.TypeConverter.cs │ │ │ │ │ │ ├── ImageVersionProperties.cs │ │ │ │ │ │ ├── ImageVersionProperties.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── ManualResourcePredictionsProfile.PowerShell.cs │ │ │ │ │ │ ├── ManualResourcePredictionsProfile.TypeConverter.cs │ │ │ │ │ │ ├── ManualResourcePredictionsProfile.cs │ │ │ │ │ │ ├── ManualResourcePredictionsProfile.json.cs │ │ │ │ │ │ ├── NetworkProfile.PowerShell.cs │ │ │ │ │ │ ├── NetworkProfile.TypeConverter.cs │ │ │ │ │ │ ├── NetworkProfile.cs │ │ │ │ │ │ ├── NetworkProfile.json.cs │ │ │ │ │ │ ├── OSProfile.PowerShell.cs │ │ │ │ │ │ ├── OSProfile.TypeConverter.cs │ │ │ │ │ │ ├── OSProfile.cs │ │ │ │ │ │ ├── OSProfile.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── Organization.PowerShell.cs │ │ │ │ │ │ ├── Organization.TypeConverter.cs │ │ │ │ │ │ ├── Organization.cs │ │ │ │ │ │ ├── Organization.json.cs │ │ │ │ │ │ ├── OrganizationProfile.PowerShell.cs │ │ │ │ │ │ ├── OrganizationProfile.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationProfile.cs │ │ │ │ │ │ ├── OrganizationProfile.json.cs │ │ │ │ │ │ ├── PagedQuota.PowerShell.cs │ │ │ │ │ │ ├── PagedQuota.TypeConverter.cs │ │ │ │ │ │ ├── PagedQuota.cs │ │ │ │ │ │ ├── PagedQuota.json.cs │ │ │ │ │ │ ├── Pool.PowerShell.cs │ │ │ │ │ │ ├── Pool.TypeConverter.cs │ │ │ │ │ │ ├── Pool.cs │ │ │ │ │ │ ├── Pool.json.cs │ │ │ │ │ │ ├── PoolImage.PowerShell.cs │ │ │ │ │ │ ├── PoolImage.TypeConverter.cs │ │ │ │ │ │ ├── PoolImage.cs │ │ │ │ │ │ ├── PoolImage.json.cs │ │ │ │ │ │ ├── PoolListResult.PowerShell.cs │ │ │ │ │ │ ├── PoolListResult.TypeConverter.cs │ │ │ │ │ │ ├── PoolListResult.cs │ │ │ │ │ │ ├── PoolListResult.json.cs │ │ │ │ │ │ ├── PoolProperties.PowerShell.cs │ │ │ │ │ │ ├── PoolProperties.TypeConverter.cs │ │ │ │ │ │ ├── PoolProperties.cs │ │ │ │ │ │ ├── PoolProperties.json.cs │ │ │ │ │ │ ├── PoolUpdate.PowerShell.cs │ │ │ │ │ │ ├── PoolUpdate.TypeConverter.cs │ │ │ │ │ │ ├── PoolUpdate.cs │ │ │ │ │ │ ├── PoolUpdate.json.cs │ │ │ │ │ │ ├── PoolUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── PoolUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── PoolUpdateProperties.cs │ │ │ │ │ │ ├── PoolUpdateProperties.json.cs │ │ │ │ │ │ ├── PoolUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── PoolUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── PoolUpdateTags.cs │ │ │ │ │ │ ├── PoolUpdateTags.dictionary.cs │ │ │ │ │ │ ├── PoolUpdateTags.json.cs │ │ │ │ │ │ ├── PoolsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── PoolsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── PoolsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── PoolsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PoolsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── PoolsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── PoolsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── PoolsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Quota.PowerShell.cs │ │ │ │ │ │ ├── Quota.TypeConverter.cs │ │ │ │ │ │ ├── Quota.cs │ │ │ │ │ │ ├── Quota.json.cs │ │ │ │ │ │ ├── QuotaName.PowerShell.cs │ │ │ │ │ │ ├── QuotaName.TypeConverter.cs │ │ │ │ │ │ ├── QuotaName.cs │ │ │ │ │ │ ├── QuotaName.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceDetailsObject.PowerShell.cs │ │ │ │ │ │ ├── ResourceDetailsObject.TypeConverter.cs │ │ │ │ │ │ ├── ResourceDetailsObject.cs │ │ │ │ │ │ ├── ResourceDetailsObject.json.cs │ │ │ │ │ │ ├── ResourceDetailsObjectListResult.PowerShell.cs │ │ │ │ │ │ ├── ResourceDetailsObjectListResult.TypeConverter.cs │ │ │ │ │ │ ├── ResourceDetailsObjectListResult.cs │ │ │ │ │ │ ├── ResourceDetailsObjectListResult.json.cs │ │ │ │ │ │ ├── ResourceDetailsObjectProperties.PowerShell.cs │ │ │ │ │ │ ├── ResourceDetailsObjectProperties.TypeConverter.cs │ │ │ │ │ │ ├── ResourceDetailsObjectProperties.cs │ │ │ │ │ │ ├── ResourceDetailsObjectProperties.json.cs │ │ │ │ │ │ ├── ResourcePredictions.PowerShell.cs │ │ │ │ │ │ ├── ResourcePredictions.TypeConverter.cs │ │ │ │ │ │ ├── ResourcePredictions.cs │ │ │ │ │ │ ├── ResourcePredictions.json.cs │ │ │ │ │ │ ├── ResourcePredictionsProfile.PowerShell.cs │ │ │ │ │ │ ├── ResourcePredictionsProfile.TypeConverter.cs │ │ │ │ │ │ ├── ResourcePredictionsProfile.cs │ │ │ │ │ │ ├── ResourcePredictionsProfile.json.cs │ │ │ │ │ │ ├── ResourceSku.PowerShell.cs │ │ │ │ │ │ ├── ResourceSku.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSku.cs │ │ │ │ │ │ ├── ResourceSku.json.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.cs │ │ │ │ │ │ ├── ResourceSkuCapabilities.json.cs │ │ │ │ │ │ ├── ResourceSkuListResult.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuListResult.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuListResult.cs │ │ │ │ │ │ ├── ResourceSkuListResult.json.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.cs │ │ │ │ │ │ ├── ResourceSkuLocationInfo.json.cs │ │ │ │ │ │ ├── ResourceSkuProperties.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuProperties.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuProperties.cs │ │ │ │ │ │ ├── ResourceSkuProperties.json.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.cs │ │ │ │ │ │ ├── ResourceSkuRestrictionInfo.json.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.cs │ │ │ │ │ │ ├── ResourceSkuRestrictions.json.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.cs │ │ │ │ │ │ ├── ResourceSkuZoneDetails.json.cs │ │ │ │ │ │ ├── SecretsManagementSettings.PowerShell.cs │ │ │ │ │ │ ├── SecretsManagementSettings.TypeConverter.cs │ │ │ │ │ │ ├── SecretsManagementSettings.cs │ │ │ │ │ │ ├── SecretsManagementSettings.json.cs │ │ │ │ │ │ ├── Stateful.PowerShell.cs │ │ │ │ │ │ ├── Stateful.TypeConverter.cs │ │ │ │ │ │ ├── Stateful.cs │ │ │ │ │ │ ├── Stateful.json.cs │ │ │ │ │ │ ├── StatelessAgentProfile.PowerShell.cs │ │ │ │ │ │ ├── StatelessAgentProfile.TypeConverter.cs │ │ │ │ │ │ ├── StatelessAgentProfile.cs │ │ │ │ │ │ ├── StatelessAgentProfile.json.cs │ │ │ │ │ │ ├── StorageProfile.PowerShell.cs │ │ │ │ │ │ ├── StorageProfile.TypeConverter.cs │ │ │ │ │ │ ├── StorageProfile.cs │ │ │ │ │ │ ├── StorageProfile.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VmssFabricProfile.PowerShell.cs │ │ │ │ │ │ ├── VmssFabricProfile.TypeConverter.cs │ │ │ │ │ │ ├── VmssFabricProfile.cs │ │ │ │ │ │ └── VmssFabricProfile.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzDevOpsInfrastructureImageVersion_List.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructureOperation_List.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructurePool_Get.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructurePool_GetViaIdentity.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructurePool_List.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructurePool_List1.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructureResourceDetail_List.cs │ │ │ │ │ ├── GetAzDevOpsInfrastructureSku_List.cs │ │ │ │ │ ├── InvokeAzDevOpsInfrastructureUsageSubscriptionUsage_Usages.cs │ │ │ │ │ ├── InvokeAzDevOpsInfrastructureUsageSubscriptionUsage_UsagesViaIdentity.cs │ │ │ │ │ ├── NewAzDevOpsInfrastructurePool_CreateExpanded.cs │ │ │ │ │ ├── NewAzDevOpsInfrastructurePool_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzDevOpsInfrastructurePool_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzDevOpsInfrastructurePool_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzDevOpsInfrastructurePool_Delete.cs │ │ │ │ │ ├── RemoveAzDevOpsInfrastructurePool_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzDevOpsInfrastructurePool_UpdateExpanded.cs │ │ │ │ │ ├── SetAzDevOpsInfrastructurePool_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzDevOpsInfrastructurePool_UpdateViaJsonString.cs │ │ │ │ │ ├── TestAzDevOpsInfrastructurePoolNameAvailability_Check.cs │ │ │ │ │ ├── TestAzDevOpsInfrastructurePoolNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzDevOpsInfrastructurePoolNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzDevOpsInfrastructurePoolNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzDevOpsInfrastructurePool_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzDevOpsInfrastructurePool_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.DevOpsInfrastructure.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Neon.Postgres.Management │ │ ├── LiftrBase.Data │ │ │ └── main.tsp │ │ ├── LiftrBase │ │ │ └── main.tsp │ │ ├── README.md │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-08-01-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.NeonPostgres.csproj │ │ │ ├── Az.NeonPostgres.nuspec │ │ │ ├── Az.NeonPostgres.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.NeonPostgres.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── CompanyDetails.PowerShell.cs │ │ │ │ │ │ ├── CompanyDetails.TypeConverter.cs │ │ │ │ │ │ ├── CompanyDetails.cs │ │ │ │ │ │ ├── CompanyDetails.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── NeonPostgresIdentity.PowerShell.cs │ │ │ │ │ │ ├── NeonPostgresIdentity.TypeConverter.cs │ │ │ │ │ │ ├── NeonPostgresIdentity.cs │ │ │ │ │ │ ├── NeonPostgresIdentity.json.cs │ │ │ │ │ │ ├── OfferDetails.PowerShell.cs │ │ │ │ │ │ ├── OfferDetails.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetails.cs │ │ │ │ │ │ ├── OfferDetails.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── OrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationProperties.cs │ │ │ │ │ │ ├── OrganizationProperties.json.cs │ │ │ │ │ │ ├── OrganizationResource.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResource.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResource.cs │ │ │ │ │ │ ├── OrganizationResource.json.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.json.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── OrganizationsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── OrganizationsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── OrganizationsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.cs │ │ │ │ │ │ ├── PartnerOrganizationProperties.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SingleSignOnProperties.PowerShell.cs │ │ │ │ │ │ ├── SingleSignOnProperties.TypeConverter.cs │ │ │ │ │ │ ├── SingleSignOnProperties.cs │ │ │ │ │ │ ├── SingleSignOnProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ └── UserDetails.json.cs │ │ │ │ │ └── NeonPostgres.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzNeonPostgresOperation_List.cs │ │ │ │ │ ├── GetAzNeonPostgresOrganization_Get.cs │ │ │ │ │ ├── GetAzNeonPostgresOrganization_GetViaIdentity.cs │ │ │ │ │ ├── GetAzNeonPostgresOrganization_List.cs │ │ │ │ │ ├── GetAzNeonPostgresOrganization_List1.cs │ │ │ │ │ ├── NewAzNeonPostgresOrganization_CreateExpanded.cs │ │ │ │ │ ├── NewAzNeonPostgresOrganization_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzNeonPostgresOrganization_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzNeonPostgresOrganization_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzNeonPostgresOrganization_Delete.cs │ │ │ │ │ ├── RemoveAzNeonPostgresOrganization_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzNeonPostgresOrganization_UpdateExpanded.cs │ │ │ │ │ ├── SetAzNeonPostgresOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzNeonPostgresOrganization_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzNeonPostgresOrganization_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzNeonPostgresOrganization_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzNeonPostgresOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzNeonPostgresOrganization_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.NeonPostgres.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── NetworkAnalytics.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2023-11-15 │ │ │ │ ├── DataProductsCatalogs_Get_MaximumSet_Gen.json │ │ │ │ ├── DataProductsCatalogs_Get_MinimumSet_Gen.json │ │ │ │ ├── DataProductsCatalogs_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── DataProductsCatalogs_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── DataProductsCatalogs_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── DataProductsCatalogs_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_AddUserRole_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_AddUserRole_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_Create_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_Create_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_Delete_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_Delete_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_GenerateStorageAccountSasToken_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_GenerateStorageAccountSasToken_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_Get_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_Get_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_ListRolesAssignments_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_ListRolesAssignments_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_RemoveUserRole_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_RemoveUserRole_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_RotateKey_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_RotateKey_MinimumSet_Gen.json │ │ │ │ ├── DataProducts_Update_MaximumSet_Gen.json │ │ │ │ ├── DataProducts_Update_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_Create_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_Create_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_DeleteData_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_DeleteData_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_Delete_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_Delete_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_GenerateStorageContainerSasToken_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_GenerateStorageContainerSasToken_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_Get_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_Get_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_ListByDataProduct_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_ListByDataProduct_MinimumSet_Gen.json │ │ │ │ ├── DataTypes_Update_MaximumSet_Gen.json │ │ │ │ ├── DataTypes_Update_MinimumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ └── Operations_List_MinimumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.NetworkAnalytics.csproj │ │ │ ├── Az.NetworkAnalytics.nuspec │ │ │ ├── Az.NetworkAnalytics.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.NetworkAnalytics.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftNetworkAnalytics.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── AccountSas.PowerShell.cs │ │ │ │ │ │ ├── AccountSas.TypeConverter.cs │ │ │ │ │ │ ├── AccountSas.cs │ │ │ │ │ │ ├── AccountSas.json.cs │ │ │ │ │ │ ├── AccountSasToken.PowerShell.cs │ │ │ │ │ │ ├── AccountSasToken.TypeConverter.cs │ │ │ │ │ │ ├── AccountSasToken.cs │ │ │ │ │ │ ├── AccountSasToken.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ConsumptionEndpointsProperties.PowerShell.cs │ │ │ │ │ │ ├── ConsumptionEndpointsProperties.TypeConverter.cs │ │ │ │ │ │ ├── ConsumptionEndpointsProperties.cs │ │ │ │ │ │ ├── ConsumptionEndpointsProperties.json.cs │ │ │ │ │ │ ├── ContainerSaS.PowerShell.cs │ │ │ │ │ │ ├── ContainerSaS.TypeConverter.cs │ │ │ │ │ │ ├── ContainerSaS.cs │ │ │ │ │ │ ├── ContainerSaS.json.cs │ │ │ │ │ │ ├── ContainerSasToken.PowerShell.cs │ │ │ │ │ │ ├── ContainerSasToken.TypeConverter.cs │ │ │ │ │ │ ├── ContainerSasToken.cs │ │ │ │ │ │ ├── ContainerSasToken.json.cs │ │ │ │ │ │ ├── DataProduct.PowerShell.cs │ │ │ │ │ │ ├── DataProduct.TypeConverter.cs │ │ │ │ │ │ ├── DataProduct.cs │ │ │ │ │ │ ├── DataProduct.json.cs │ │ │ │ │ │ ├── DataProductInformation.PowerShell.cs │ │ │ │ │ │ ├── DataProductInformation.TypeConverter.cs │ │ │ │ │ │ ├── DataProductInformation.cs │ │ │ │ │ │ ├── DataProductInformation.json.cs │ │ │ │ │ │ ├── DataProductListResult.PowerShell.cs │ │ │ │ │ │ ├── DataProductListResult.TypeConverter.cs │ │ │ │ │ │ ├── DataProductListResult.cs │ │ │ │ │ │ ├── DataProductListResult.json.cs │ │ │ │ │ │ ├── DataProductNetworkAcls.PowerShell.cs │ │ │ │ │ │ ├── DataProductNetworkAcls.TypeConverter.cs │ │ │ │ │ │ ├── DataProductNetworkAcls.cs │ │ │ │ │ │ ├── DataProductNetworkAcls.json.cs │ │ │ │ │ │ ├── DataProductProperties.PowerShell.cs │ │ │ │ │ │ ├── DataProductProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataProductProperties.cs │ │ │ │ │ │ ├── DataProductProperties.json.cs │ │ │ │ │ │ ├── DataProductUpdate.PowerShell.cs │ │ │ │ │ │ ├── DataProductUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DataProductUpdate.cs │ │ │ │ │ │ ├── DataProductUpdate.json.cs │ │ │ │ │ │ ├── DataProductUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── DataProductUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataProductUpdateProperties.cs │ │ │ │ │ │ ├── DataProductUpdateProperties.json.cs │ │ │ │ │ │ ├── DataProductUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── DataProductUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── DataProductUpdateTags.cs │ │ │ │ │ │ ├── DataProductUpdateTags.dictionary.cs │ │ │ │ │ │ ├── DataProductUpdateTags.json.cs │ │ │ │ │ │ ├── DataProductVersion.PowerShell.cs │ │ │ │ │ │ ├── DataProductVersion.TypeConverter.cs │ │ │ │ │ │ ├── DataProductVersion.cs │ │ │ │ │ │ ├── DataProductVersion.json.cs │ │ │ │ │ │ ├── DataProductsCatalog.PowerShell.cs │ │ │ │ │ │ ├── DataProductsCatalog.TypeConverter.cs │ │ │ │ │ │ ├── DataProductsCatalog.cs │ │ │ │ │ │ ├── DataProductsCatalog.json.cs │ │ │ │ │ │ ├── DataProductsCatalogListResult.PowerShell.cs │ │ │ │ │ │ ├── DataProductsCatalogListResult.TypeConverter.cs │ │ │ │ │ │ ├── DataProductsCatalogListResult.cs │ │ │ │ │ │ ├── DataProductsCatalogListResult.json.cs │ │ │ │ │ │ ├── DataProductsCatalogProperties.PowerShell.cs │ │ │ │ │ │ ├── DataProductsCatalogProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataProductsCatalogProperties.cs │ │ │ │ │ │ ├── DataProductsCatalogProperties.json.cs │ │ │ │ │ │ ├── DataProductsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DataProductsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DataProductsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DataProductsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DataProductsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DataProductsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DataProductsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DataProductsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DataType.PowerShell.cs │ │ │ │ │ │ ├── DataType.TypeConverter.cs │ │ │ │ │ │ ├── DataType.cs │ │ │ │ │ │ ├── DataType.json.cs │ │ │ │ │ │ ├── DataTypeListResult.PowerShell.cs │ │ │ │ │ │ ├── DataTypeListResult.TypeConverter.cs │ │ │ │ │ │ ├── DataTypeListResult.cs │ │ │ │ │ │ ├── DataTypeListResult.json.cs │ │ │ │ │ │ ├── DataTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── DataTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataTypeProperties.cs │ │ │ │ │ │ ├── DataTypeProperties.json.cs │ │ │ │ │ │ ├── DataTypeUpdate.PowerShell.cs │ │ │ │ │ │ ├── DataTypeUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DataTypeUpdate.cs │ │ │ │ │ │ ├── DataTypeUpdate.json.cs │ │ │ │ │ │ ├── DataTypeUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── DataTypeUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── DataTypeUpdateProperties.cs │ │ │ │ │ │ ├── DataTypeUpdateProperties.json.cs │ │ │ │ │ │ ├── DataTypesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DataTypesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DataTypesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DataTypesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DataTypesDeleteDataAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DataTypesDeleteDataAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DataTypesDeleteDataAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DataTypesDeleteDataAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DataTypesUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DataTypesUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DataTypesUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DataTypesUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── EncryptionKeyDetails.PowerShell.cs │ │ │ │ │ │ ├── EncryptionKeyDetails.TypeConverter.cs │ │ │ │ │ │ ├── EncryptionKeyDetails.cs │ │ │ │ │ │ ├── EncryptionKeyDetails.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── IPRules.PowerShell.cs │ │ │ │ │ │ ├── IPRules.TypeConverter.cs │ │ │ │ │ │ ├── IPRules.cs │ │ │ │ │ │ ├── IPRules.json.cs │ │ │ │ │ │ ├── KeyVaultInfo.PowerShell.cs │ │ │ │ │ │ ├── KeyVaultInfo.TypeConverter.cs │ │ │ │ │ │ ├── KeyVaultInfo.cs │ │ │ │ │ │ ├── KeyVaultInfo.json.cs │ │ │ │ │ │ ├── ListRoleAssignments.PowerShell.cs │ │ │ │ │ │ ├── ListRoleAssignments.TypeConverter.cs │ │ │ │ │ │ ├── ListRoleAssignments.cs │ │ │ │ │ │ ├── ListRoleAssignments.json.cs │ │ │ │ │ │ ├── ManagedResourceGroupConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ManagedResourceGroupConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ManagedResourceGroupConfiguration.cs │ │ │ │ │ │ ├── ManagedResourceGroupConfiguration.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityV4UserAssignedIdentities.json.cs │ │ │ │ │ │ ├── NetworkAnalyticsIdentity.PowerShell.cs │ │ │ │ │ │ ├── NetworkAnalyticsIdentity.TypeConverter.cs │ │ │ │ │ │ ├── NetworkAnalyticsIdentity.cs │ │ │ │ │ │ ├── NetworkAnalyticsIdentity.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── PublisherInformation.PowerShell.cs │ │ │ │ │ │ ├── PublisherInformation.TypeConverter.cs │ │ │ │ │ │ ├── PublisherInformation.cs │ │ │ │ │ │ ├── PublisherInformation.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── RoleAssignmentCommonProperties.PowerShell.cs │ │ │ │ │ │ ├── RoleAssignmentCommonProperties.TypeConverter.cs │ │ │ │ │ │ ├── RoleAssignmentCommonProperties.cs │ │ │ │ │ │ ├── RoleAssignmentCommonProperties.json.cs │ │ │ │ │ │ ├── RoleAssignmentDetail.PowerShell.cs │ │ │ │ │ │ ├── RoleAssignmentDetail.TypeConverter.cs │ │ │ │ │ │ ├── RoleAssignmentDetail.cs │ │ │ │ │ │ ├── RoleAssignmentDetail.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VirtualNetworkRule.PowerShell.cs │ │ │ │ │ │ ├── VirtualNetworkRule.TypeConverter.cs │ │ │ │ │ │ ├── VirtualNetworkRule.cs │ │ │ │ │ │ └── VirtualNetworkRule.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── AddAzNetworkAnalyticsDataProductUserRole_Add.cs │ │ │ │ │ ├── AddAzNetworkAnalyticsDataProductUserRole_AddExpanded.cs │ │ │ │ │ ├── AddAzNetworkAnalyticsDataProductUserRole_AddViaIdentity.cs │ │ │ │ │ ├── AddAzNetworkAnalyticsDataProductUserRole_AddViaIdentityExpanded.cs │ │ │ │ │ ├── AddAzNetworkAnalyticsDataProductUserRole_AddViaJsonFilePath.cs │ │ │ │ │ ├── AddAzNetworkAnalyticsDataProductUserRole_AddViaJsonString.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductRoleAssignment_List.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductRoleAssignment_ListExpanded.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductRoleAssignment_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductRoleAssignment_ListViaJsonString.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProduct_Get.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProduct_GetViaIdentity.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProduct_List.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProduct_List1.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductsCatalog_Get.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductsCatalog_List.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataProductsCatalog_List1.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataType_Get.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataType_GetViaIdentity.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataType_GetViaIdentityDataProduct.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsDataType_List.cs │ │ │ │ │ ├── GetAzNetworkAnalyticsOperation_List.cs │ │ │ │ │ ├── InvokeAzNetworkAnalyticsRotateDataProductKey_Rotate.cs │ │ │ │ │ ├── InvokeAzNetworkAnalyticsRotateDataProductKey_RotateExpanded.cs │ │ │ │ │ ├── InvokeAzNetworkAnalyticsRotateDataProductKey_RotateViaIdentity.cs │ │ │ │ │ ├── InvokeAzNetworkAnalyticsRotateDataProductKey_RotateViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzNetworkAnalyticsRotateDataProductKey_RotateViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzNetworkAnalyticsRotateDataProductKey_RotateViaJsonString.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProductStorageAccountSasToken_Generate.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProductStorageAccountSasToken_GenerateExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProductStorageAccountSasToken_GenerateViaIdentity.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProductStorageAccountSasToken_GenerateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProductStorageAccountSasToken_GenerateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProductStorageAccountSasToken_GenerateViaJsonString.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProduct_CreateExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProduct_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProduct_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataProduct_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_Generate.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateViaIdentity.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateViaIdentityDataProduct.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateViaIdentityDataProductExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataTypeStorageContainerSasToken_GenerateViaJsonString.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataType_CreateExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataType_CreateViaIdentityDataProductExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataType_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataType_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzNetworkAnalyticsDataType_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProductUserRole_Remove.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProductUserRole_RemoveExpanded.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProductUserRole_RemoveViaIdentity.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProductUserRole_RemoveViaIdentityExpanded.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProductUserRole_RemoveViaJsonFilePath.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProductUserRole_RemoveViaJsonString.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProduct_Delete.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataProduct_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_Delete.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteExpanded.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteViaIdentityDataProduct.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteViaIdentityDataProductExpanded.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteViaIdentityExpanded.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteViaJsonFilePath.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataTypeData_DeleteViaJsonString.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataType_Delete.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataType_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzNetworkAnalyticsDataType_DeleteViaIdentityDataProduct.cs │ │ │ │ │ ├── UpdateAzNetworkAnalyticsDataProduct_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzNetworkAnalyticsDataProduct_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzNetworkAnalyticsDataType_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzNetworkAnalyticsDataType_UpdateViaIdentityDataProductExpanded.cs │ │ │ │ │ ├── UpdateAzNetworkAnalyticsDataType_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzNetworkAnalyticsDataType_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzNetworkAnalyticsDataType_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.NetworkAnalytics.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Oracle.Database.Management.brown │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models │ │ │ ├── autonomousdatabase │ │ │ │ ├── adbCommon.tsp │ │ │ │ ├── autonomousDatabase.tsp │ │ │ │ ├── autonomousDatabaseBackup.tsp │ │ │ │ ├── autonomousDatabaseCharacterSet.tsp │ │ │ │ ├── autonomousDatabaseNationalCharacterSet.tsp │ │ │ │ └── autonomousDatabaseVersion.tsp │ │ │ ├── common.tsp │ │ │ ├── exadata │ │ │ │ ├── dbNodes.tsp │ │ │ │ ├── dbServers.tsp │ │ │ │ ├── dbSystemShapes.tsp │ │ │ │ ├── dnsPrivateViews.tsp │ │ │ │ ├── dnsPrivateZones.tsp │ │ │ │ ├── exadatainfra.tsp │ │ │ │ ├── flexComponents.tsp │ │ │ │ ├── giMinorVersions.tsp │ │ │ │ ├── giVersions.tsp │ │ │ │ ├── privateIpAddresses.tsp │ │ │ │ ├── systemVersions.tsp │ │ │ │ ├── virtualNetworkAddress.tsp │ │ │ │ └── vmcluster.tsp │ │ │ ├── exascale │ │ │ │ ├── exadbVmCluster.tsp │ │ │ │ ├── exascaleDbNode.tsp │ │ │ │ └── exascaleDbStorageVault.tsp │ │ │ └── oraclesubscription │ │ │ │ └── oracleSubscription.tsp │ │ ├── operations │ │ │ ├── autonomousdatabase │ │ │ │ ├── autonomousDatabaseBackupOperations.tsp │ │ │ │ ├── autonomousDatabaseCharacterSetOperations.tsp │ │ │ │ ├── autonomousDatabaseNationalCharacterSetOperations.tsp │ │ │ │ ├── autonomousDatabaseOperations.tsp │ │ │ │ └── autonomousDatabaseVersionOperations.tsp │ │ │ ├── commons.tsp │ │ │ ├── exadata │ │ │ │ ├── dbNodesOperations.tsp │ │ │ │ ├── dbServersOperations.tsp │ │ │ │ ├── dbSystemShapeOperations.tsp │ │ │ │ ├── dnsPrivateViewsOperations.tsp │ │ │ │ ├── dnsPrivateZonesOperations.tsp │ │ │ │ ├── exadatainfrastructureOperations.tsp │ │ │ │ ├── flexComponentOperations.tsp │ │ │ │ ├── giMinorVersionOperations.tsp │ │ │ │ ├── giVersionOperations.tsp │ │ │ │ ├── systemVersionOperations.tsp │ │ │ │ ├── virtualNetworkAddressOperations.tsp │ │ │ │ └── vmclusterOperations.tsp │ │ │ ├── exascale │ │ │ │ ├── exadbVmClusterOperations.tsp │ │ │ │ ├── exascaleDbNodesOperations.tsp │ │ │ │ └── exascaleDbStorageVaultOperations.tsp │ │ │ └── oraclesubscription │ │ │ │ └── oracleSubscriptionOperations.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.OracleDatabase.csproj │ │ │ ├── Az.OracleDatabase.nuspec │ │ │ ├── Az.OracleDatabase.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.OracleDatabase.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ActivationLinks.PowerShell.cs │ │ │ │ │ │ ├── ActivationLinks.TypeConverter.cs │ │ │ │ │ │ ├── ActivationLinks.cs │ │ │ │ │ │ ├── ActivationLinks.json.cs │ │ │ │ │ │ ├── AddRemoveDbNode.PowerShell.cs │ │ │ │ │ │ ├── AddRemoveDbNode.TypeConverter.cs │ │ │ │ │ │ ├── AddRemoveDbNode.cs │ │ │ │ │ │ ├── AddRemoveDbNode.json.cs │ │ │ │ │ │ ├── AllConnectionStringType.PowerShell.cs │ │ │ │ │ │ ├── AllConnectionStringType.TypeConverter.cs │ │ │ │ │ │ ├── AllConnectionStringType.cs │ │ │ │ │ │ ├── AllConnectionStringType.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApexDetailsType.PowerShell.cs │ │ │ │ │ │ ├── ApexDetailsType.TypeConverter.cs │ │ │ │ │ │ ├── ApexDetailsType.cs │ │ │ │ │ │ ├── ApexDetailsType.json.cs │ │ │ │ │ │ ├── AutonomousDatabase.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabase.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabase.cs │ │ │ │ │ │ ├── AutonomousDatabase.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackup.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackup.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackup.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackup.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupListResult.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupListResult.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupListResult.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupListResult.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdate.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdate.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdate.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdate.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdateProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseBackupUpdateProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseBaseProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseBaseProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseBaseProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseBaseProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSet.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSet.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSet.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSet.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetListResult.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetListResult.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetListResult.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetListResult.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseCharacterSetProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseCloneProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseCloneProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseCloneProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseCloneProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseCrossRegionDisasterRecoveryProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseCrossRegionDisasterRecoveryProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseCrossRegionDisasterRecoveryProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseCrossRegionDisasterRecoveryProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseFromBackupTimestampProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseFromBackupTimestampProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseFromBackupTimestampProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseFromBackupTimestampProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseListResult.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseListResult.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseListResult.cs │ │ │ │ │ │ ├── AutonomousDatabaseListResult.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSet.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSet.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSet.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSet.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetListResult.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetListResult.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetListResult.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetListResult.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseNationalCharacterSetProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseStandbySummary.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseStandbySummary.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseStandbySummary.cs │ │ │ │ │ │ ├── AutonomousDatabaseStandbySummary.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdate.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdate.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdate.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdate.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateProperties.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateProperties.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateTags.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateTags.dictionary.cs │ │ │ │ │ │ ├── AutonomousDatabaseUpdateTags.json.cs │ │ │ │ │ │ ├── AutonomousDatabaseWalletFile.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDatabaseWalletFile.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDatabaseWalletFile.cs │ │ │ │ │ │ ├── AutonomousDatabaseWalletFile.json.cs │ │ │ │ │ │ ├── AutonomousDbVersion.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDbVersion.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDbVersion.cs │ │ │ │ │ │ ├── AutonomousDbVersion.json.cs │ │ │ │ │ │ ├── AutonomousDbVersionListResult.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDbVersionListResult.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDbVersionListResult.cs │ │ │ │ │ │ ├── AutonomousDbVersionListResult.json.cs │ │ │ │ │ │ ├── AutonomousDbVersionProperties.PowerShell.cs │ │ │ │ │ │ ├── AutonomousDbVersionProperties.TypeConverter.cs │ │ │ │ │ │ ├── AutonomousDbVersionProperties.cs │ │ │ │ │ │ ├── AutonomousDbVersionProperties.json.cs │ │ │ │ │ │ ├── AzureSubscriptions.PowerShell.cs │ │ │ │ │ │ ├── AzureSubscriptions.TypeConverter.cs │ │ │ │ │ │ ├── AzureSubscriptions.cs │ │ │ │ │ │ ├── AzureSubscriptions.json.cs │ │ │ │ │ │ ├── CloudAccountDetails.PowerShell.cs │ │ │ │ │ │ ├── CloudAccountDetails.TypeConverter.cs │ │ │ │ │ │ ├── CloudAccountDetails.cs │ │ │ │ │ │ ├── CloudAccountDetails.json.cs │ │ │ │ │ │ ├── CloudExadataInfrastructure.PowerShell.cs │ │ │ │ │ │ ├── CloudExadataInfrastructure.TypeConverter.cs │ │ │ │ │ │ ├── CloudExadataInfrastructure.cs │ │ │ │ │ │ ├── CloudExadataInfrastructure.json.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureListResult.PowerShell.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureListResult.TypeConverter.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureListResult.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureListResult.json.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureProperties.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureProperties.json.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdate.PowerShell.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdate.TypeConverter.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdate.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdate.json.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateProperties.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateProperties.json.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateTags.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateTags.dictionary.cs │ │ │ │ │ │ ├── CloudExadataInfrastructureUpdateTags.json.cs │ │ │ │ │ │ ├── CloudVMCluster.PowerShell.cs │ │ │ │ │ │ ├── CloudVMCluster.TypeConverter.cs │ │ │ │ │ │ ├── CloudVMCluster.cs │ │ │ │ │ │ ├── CloudVMCluster.json.cs │ │ │ │ │ │ ├── CloudVMClusterListResult.PowerShell.cs │ │ │ │ │ │ ├── CloudVMClusterListResult.TypeConverter.cs │ │ │ │ │ │ ├── CloudVMClusterListResult.cs │ │ │ │ │ │ ├── CloudVMClusterListResult.json.cs │ │ │ │ │ │ ├── CloudVMClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudVMClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudVMClusterProperties.cs │ │ │ │ │ │ ├── CloudVMClusterProperties.json.cs │ │ │ │ │ │ ├── CloudVMClusterUpdate.PowerShell.cs │ │ │ │ │ │ ├── CloudVMClusterUpdate.TypeConverter.cs │ │ │ │ │ │ ├── CloudVMClusterUpdate.cs │ │ │ │ │ │ ├── CloudVMClusterUpdate.json.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateProperties.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateProperties.json.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateTags.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateTags.dictionary.cs │ │ │ │ │ │ ├── CloudVMClusterUpdateTags.json.cs │ │ │ │ │ │ ├── ConnectionStringType.PowerShell.cs │ │ │ │ │ │ ├── ConnectionStringType.TypeConverter.cs │ │ │ │ │ │ ├── ConnectionStringType.cs │ │ │ │ │ │ ├── ConnectionStringType.json.cs │ │ │ │ │ │ ├── ConnectionUrlType.PowerShell.cs │ │ │ │ │ │ ├── ConnectionUrlType.TypeConverter.cs │ │ │ │ │ │ ├── ConnectionUrlType.cs │ │ │ │ │ │ ├── ConnectionUrlType.json.cs │ │ │ │ │ │ ├── CustomerContact.PowerShell.cs │ │ │ │ │ │ ├── CustomerContact.TypeConverter.cs │ │ │ │ │ │ ├── CustomerContact.cs │ │ │ │ │ │ ├── CustomerContact.json.cs │ │ │ │ │ │ ├── DataCollectionOptions.PowerShell.cs │ │ │ │ │ │ ├── DataCollectionOptions.TypeConverter.cs │ │ │ │ │ │ ├── DataCollectionOptions.cs │ │ │ │ │ │ ├── DataCollectionOptions.json.cs │ │ │ │ │ │ ├── DayOfWeek.PowerShell.cs │ │ │ │ │ │ ├── DayOfWeek.TypeConverter.cs │ │ │ │ │ │ ├── DayOfWeek.cs │ │ │ │ │ │ ├── DayOfWeek.json.cs │ │ │ │ │ │ ├── DayOfWeekUpdate.PowerShell.cs │ │ │ │ │ │ ├── DayOfWeekUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DayOfWeekUpdate.cs │ │ │ │ │ │ ├── DayOfWeekUpdate.json.cs │ │ │ │ │ │ ├── DbActionResponse.PowerShell.cs │ │ │ │ │ │ ├── DbActionResponse.TypeConverter.cs │ │ │ │ │ │ ├── DbActionResponse.cs │ │ │ │ │ │ ├── DbActionResponse.json.cs │ │ │ │ │ │ ├── DbIormConfig.PowerShell.cs │ │ │ │ │ │ ├── DbIormConfig.TypeConverter.cs │ │ │ │ │ │ ├── DbIormConfig.cs │ │ │ │ │ │ ├── DbIormConfig.json.cs │ │ │ │ │ │ ├── DbNode.PowerShell.cs │ │ │ │ │ │ ├── DbNode.TypeConverter.cs │ │ │ │ │ │ ├── DbNode.cs │ │ │ │ │ │ ├── DbNode.json.cs │ │ │ │ │ │ ├── DbNodeAction.PowerShell.cs │ │ │ │ │ │ ├── DbNodeAction.TypeConverter.cs │ │ │ │ │ │ ├── DbNodeAction.cs │ │ │ │ │ │ ├── DbNodeAction.json.cs │ │ │ │ │ │ ├── DbNodeDetails.PowerShell.cs │ │ │ │ │ │ ├── DbNodeDetails.TypeConverter.cs │ │ │ │ │ │ ├── DbNodeDetails.cs │ │ │ │ │ │ ├── DbNodeDetails.json.cs │ │ │ │ │ │ ├── DbNodeListResult.PowerShell.cs │ │ │ │ │ │ ├── DbNodeListResult.TypeConverter.cs │ │ │ │ │ │ ├── DbNodeListResult.cs │ │ │ │ │ │ ├── DbNodeListResult.json.cs │ │ │ │ │ │ ├── DbNodeProperties.PowerShell.cs │ │ │ │ │ │ ├── DbNodeProperties.TypeConverter.cs │ │ │ │ │ │ ├── DbNodeProperties.cs │ │ │ │ │ │ ├── DbNodeProperties.json.cs │ │ │ │ │ │ ├── DbServer.PowerShell.cs │ │ │ │ │ │ ├── DbServer.TypeConverter.cs │ │ │ │ │ │ ├── DbServer.cs │ │ │ │ │ │ ├── DbServer.json.cs │ │ │ │ │ │ ├── DbServerListResult.PowerShell.cs │ │ │ │ │ │ ├── DbServerListResult.TypeConverter.cs │ │ │ │ │ │ ├── DbServerListResult.cs │ │ │ │ │ │ ├── DbServerListResult.json.cs │ │ │ │ │ │ ├── DbServerPatchingDetails.PowerShell.cs │ │ │ │ │ │ ├── DbServerPatchingDetails.TypeConverter.cs │ │ │ │ │ │ ├── DbServerPatchingDetails.cs │ │ │ │ │ │ ├── DbServerPatchingDetails.json.cs │ │ │ │ │ │ ├── DbServerProperties.PowerShell.cs │ │ │ │ │ │ ├── DbServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── DbServerProperties.cs │ │ │ │ │ │ ├── DbServerProperties.json.cs │ │ │ │ │ │ ├── DbSystemShape.PowerShell.cs │ │ │ │ │ │ ├── DbSystemShape.TypeConverter.cs │ │ │ │ │ │ ├── DbSystemShape.cs │ │ │ │ │ │ ├── DbSystemShape.json.cs │ │ │ │ │ │ ├── DbSystemShapeListResult.PowerShell.cs │ │ │ │ │ │ ├── DbSystemShapeListResult.TypeConverter.cs │ │ │ │ │ │ ├── DbSystemShapeListResult.cs │ │ │ │ │ │ ├── DbSystemShapeListResult.json.cs │ │ │ │ │ │ ├── DbSystemShapeProperties.PowerShell.cs │ │ │ │ │ │ ├── DbSystemShapeProperties.TypeConverter.cs │ │ │ │ │ │ ├── DbSystemShapeProperties.cs │ │ │ │ │ │ ├── DbSystemShapeProperties.json.cs │ │ │ │ │ │ ├── DefinedFileSystemConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DefinedFileSystemConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DefinedFileSystemConfiguration.cs │ │ │ │ │ │ ├── DefinedFileSystemConfiguration.json.cs │ │ │ │ │ │ ├── DisasterRecoveryConfigurationDetails.PowerShell.cs │ │ │ │ │ │ ├── DisasterRecoveryConfigurationDetails.TypeConverter.cs │ │ │ │ │ │ ├── DisasterRecoveryConfigurationDetails.cs │ │ │ │ │ │ ├── DisasterRecoveryConfigurationDetails.json.cs │ │ │ │ │ │ ├── DnsPrivateView.PowerShell.cs │ │ │ │ │ │ ├── DnsPrivateView.TypeConverter.cs │ │ │ │ │ │ ├── DnsPrivateView.cs │ │ │ │ │ │ ├── DnsPrivateView.json.cs │ │ │ │ │ │ ├── DnsPrivateViewListResult.PowerShell.cs │ │ │ │ │ │ ├── DnsPrivateViewListResult.TypeConverter.cs │ │ │ │ │ │ ├── DnsPrivateViewListResult.cs │ │ │ │ │ │ ├── DnsPrivateViewListResult.json.cs │ │ │ │ │ │ ├── DnsPrivateViewProperties.PowerShell.cs │ │ │ │ │ │ ├── DnsPrivateViewProperties.TypeConverter.cs │ │ │ │ │ │ ├── DnsPrivateViewProperties.cs │ │ │ │ │ │ ├── DnsPrivateViewProperties.json.cs │ │ │ │ │ │ ├── DnsPrivateZone.PowerShell.cs │ │ │ │ │ │ ├── DnsPrivateZone.TypeConverter.cs │ │ │ │ │ │ ├── DnsPrivateZone.cs │ │ │ │ │ │ ├── DnsPrivateZone.json.cs │ │ │ │ │ │ ├── DnsPrivateZoneListResult.PowerShell.cs │ │ │ │ │ │ ├── DnsPrivateZoneListResult.TypeConverter.cs │ │ │ │ │ │ ├── DnsPrivateZoneListResult.cs │ │ │ │ │ │ ├── DnsPrivateZoneListResult.json.cs │ │ │ │ │ │ ├── DnsPrivateZoneProperties.PowerShell.cs │ │ │ │ │ │ ├── DnsPrivateZoneProperties.TypeConverter.cs │ │ │ │ │ │ ├── DnsPrivateZoneProperties.cs │ │ │ │ │ │ ├── DnsPrivateZoneProperties.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── EstimatedPatchingTime.PowerShell.cs │ │ │ │ │ │ ├── EstimatedPatchingTime.TypeConverter.cs │ │ │ │ │ │ ├── EstimatedPatchingTime.cs │ │ │ │ │ │ ├── EstimatedPatchingTime.json.cs │ │ │ │ │ │ ├── ExadataIormConfig.PowerShell.cs │ │ │ │ │ │ ├── ExadataIormConfig.TypeConverter.cs │ │ │ │ │ │ ├── ExadataIormConfig.cs │ │ │ │ │ │ ├── ExadataIormConfig.json.cs │ │ │ │ │ │ ├── ExadbVMCluster.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMCluster.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMCluster.cs │ │ │ │ │ │ ├── ExadbVMCluster.json.cs │ │ │ │ │ │ ├── ExadbVMClusterListResult.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMClusterListResult.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMClusterListResult.cs │ │ │ │ │ │ ├── ExadbVMClusterListResult.json.cs │ │ │ │ │ │ ├── ExadbVMClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMClusterProperties.cs │ │ │ │ │ │ ├── ExadbVMClusterProperties.json.cs │ │ │ │ │ │ ├── ExadbVMClusterStorageDetails.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMClusterStorageDetails.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMClusterStorageDetails.cs │ │ │ │ │ │ ├── ExadbVMClusterStorageDetails.json.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdate.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdate.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdate.json.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateProperties.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateProperties.json.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateTags.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateTags.dictionary.cs │ │ │ │ │ │ ├── ExadbVMClusterUpdateTags.json.cs │ │ │ │ │ │ ├── ExascaleDbNode.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbNode.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbNode.cs │ │ │ │ │ │ ├── ExascaleDbNode.json.cs │ │ │ │ │ │ ├── ExascaleDbNodeListResult.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbNodeListResult.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbNodeListResult.cs │ │ │ │ │ │ ├── ExascaleDbNodeListResult.json.cs │ │ │ │ │ │ ├── ExascaleDbNodeProperties.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbNodeProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbNodeProperties.cs │ │ │ │ │ │ ├── ExascaleDbNodeProperties.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageDetails.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageDetails.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageDetails.cs │ │ │ │ │ │ ├── ExascaleDbStorageDetails.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageInputDetails.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageInputDetails.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageInputDetails.cs │ │ │ │ │ │ ├── ExascaleDbStorageInputDetails.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageVault.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageVault.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageVault.cs │ │ │ │ │ │ ├── ExascaleDbStorageVault.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultListResult.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultListResult.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultListResult.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultListResult.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultProperties.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultProperties.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdate.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdate.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdate.json.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdateTags.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdateTags.dictionary.cs │ │ │ │ │ │ ├── ExascaleDbStorageVaultTagsUpdateTags.json.cs │ │ │ │ │ │ ├── FileSystemConfigurationDetails.PowerShell.cs │ │ │ │ │ │ ├── FileSystemConfigurationDetails.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemConfigurationDetails.cs │ │ │ │ │ │ ├── FileSystemConfigurationDetails.json.cs │ │ │ │ │ │ ├── FlexComponent.PowerShell.cs │ │ │ │ │ │ ├── FlexComponent.TypeConverter.cs │ │ │ │ │ │ ├── FlexComponent.cs │ │ │ │ │ │ ├── FlexComponent.json.cs │ │ │ │ │ │ ├── FlexComponentListResult.PowerShell.cs │ │ │ │ │ │ ├── FlexComponentListResult.TypeConverter.cs │ │ │ │ │ │ ├── FlexComponentListResult.cs │ │ │ │ │ │ ├── FlexComponentListResult.json.cs │ │ │ │ │ │ ├── FlexComponentProperties.PowerShell.cs │ │ │ │ │ │ ├── FlexComponentProperties.TypeConverter.cs │ │ │ │ │ │ ├── FlexComponentProperties.cs │ │ │ │ │ │ ├── FlexComponentProperties.json.cs │ │ │ │ │ │ ├── GenerateAutonomousDatabaseWalletDetails.PowerShell.cs │ │ │ │ │ │ ├── GenerateAutonomousDatabaseWalletDetails.TypeConverter.cs │ │ │ │ │ │ ├── GenerateAutonomousDatabaseWalletDetails.cs │ │ │ │ │ │ ├── GenerateAutonomousDatabaseWalletDetails.json.cs │ │ │ │ │ │ ├── GiMinorVersion.PowerShell.cs │ │ │ │ │ │ ├── GiMinorVersion.TypeConverter.cs │ │ │ │ │ │ ├── GiMinorVersion.cs │ │ │ │ │ │ ├── GiMinorVersion.json.cs │ │ │ │ │ │ ├── GiMinorVersionListResult.PowerShell.cs │ │ │ │ │ │ ├── GiMinorVersionListResult.TypeConverter.cs │ │ │ │ │ │ ├── GiMinorVersionListResult.cs │ │ │ │ │ │ ├── GiMinorVersionListResult.json.cs │ │ │ │ │ │ ├── GiMinorVersionProperties.PowerShell.cs │ │ │ │ │ │ ├── GiMinorVersionProperties.TypeConverter.cs │ │ │ │ │ │ ├── GiMinorVersionProperties.cs │ │ │ │ │ │ ├── GiMinorVersionProperties.json.cs │ │ │ │ │ │ ├── GiVersion.PowerShell.cs │ │ │ │ │ │ ├── GiVersion.TypeConverter.cs │ │ │ │ │ │ ├── GiVersion.cs │ │ │ │ │ │ ├── GiVersion.json.cs │ │ │ │ │ │ ├── GiVersionListResult.PowerShell.cs │ │ │ │ │ │ ├── GiVersionListResult.TypeConverter.cs │ │ │ │ │ │ ├── GiVersionListResult.cs │ │ │ │ │ │ ├── GiVersionListResult.json.cs │ │ │ │ │ │ ├── GiVersionProperties.PowerShell.cs │ │ │ │ │ │ ├── GiVersionProperties.TypeConverter.cs │ │ │ │ │ │ ├── GiVersionProperties.cs │ │ │ │ │ │ ├── GiVersionProperties.json.cs │ │ │ │ │ │ ├── LongTermBackUpScheduleDetails.PowerShell.cs │ │ │ │ │ │ ├── LongTermBackUpScheduleDetails.TypeConverter.cs │ │ │ │ │ │ ├── LongTermBackUpScheduleDetails.cs │ │ │ │ │ │ ├── LongTermBackUpScheduleDetails.json.cs │ │ │ │ │ │ ├── MaintenanceWindow.PowerShell.cs │ │ │ │ │ │ ├── MaintenanceWindow.TypeConverter.cs │ │ │ │ │ │ ├── MaintenanceWindow.cs │ │ │ │ │ │ ├── MaintenanceWindow.json.cs │ │ │ │ │ │ ├── Month.PowerShell.cs │ │ │ │ │ │ ├── Month.TypeConverter.cs │ │ │ │ │ │ ├── Month.cs │ │ │ │ │ │ ├── Month.json.cs │ │ │ │ │ │ ├── NsgCidr.PowerShell.cs │ │ │ │ │ │ ├── NsgCidr.TypeConverter.cs │ │ │ │ │ │ ├── NsgCidr.cs │ │ │ │ │ │ ├── NsgCidr.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OracleDatabaseIdentity.PowerShell.cs │ │ │ │ │ │ ├── OracleDatabaseIdentity.TypeConverter.cs │ │ │ │ │ │ ├── OracleDatabaseIdentity.cs │ │ │ │ │ │ ├── OracleDatabaseIdentity.json.cs │ │ │ │ │ │ ├── OracleSubscription.PowerShell.cs │ │ │ │ │ │ ├── OracleSubscription.TypeConverter.cs │ │ │ │ │ │ ├── OracleSubscription.cs │ │ │ │ │ │ ├── OracleSubscription.json.cs │ │ │ │ │ │ ├── OracleSubscriptionListResult.PowerShell.cs │ │ │ │ │ │ ├── OracleSubscriptionListResult.TypeConverter.cs │ │ │ │ │ │ ├── OracleSubscriptionListResult.cs │ │ │ │ │ │ ├── OracleSubscriptionListResult.json.cs │ │ │ │ │ │ ├── OracleSubscriptionProperties.PowerShell.cs │ │ │ │ │ │ ├── OracleSubscriptionProperties.TypeConverter.cs │ │ │ │ │ │ ├── OracleSubscriptionProperties.cs │ │ │ │ │ │ ├── OracleSubscriptionProperties.json.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdate.PowerShell.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdate.TypeConverter.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdate.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdate.json.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdateProperties.cs │ │ │ │ │ │ ├── OracleSubscriptionUpdateProperties.json.cs │ │ │ │ │ │ ├── PeerDbDetails.PowerShell.cs │ │ │ │ │ │ ├── PeerDbDetails.TypeConverter.cs │ │ │ │ │ │ ├── PeerDbDetails.cs │ │ │ │ │ │ ├── PeerDbDetails.json.cs │ │ │ │ │ │ ├── Plan.PowerShell.cs │ │ │ │ │ │ ├── Plan.TypeConverter.cs │ │ │ │ │ │ ├── Plan.cs │ │ │ │ │ │ ├── Plan.json.cs │ │ │ │ │ │ ├── PlanUpdate.PowerShell.cs │ │ │ │ │ │ ├── PlanUpdate.TypeConverter.cs │ │ │ │ │ │ ├── PlanUpdate.cs │ │ │ │ │ │ ├── PlanUpdate.json.cs │ │ │ │ │ │ ├── PortRange.PowerShell.cs │ │ │ │ │ │ ├── PortRange.TypeConverter.cs │ │ │ │ │ │ ├── PortRange.cs │ │ │ │ │ │ ├── PortRange.json.cs │ │ │ │ │ │ ├── PrivateIPAddressProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateIPAddressProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateIPAddressProperties.cs │ │ │ │ │ │ ├── PrivateIPAddressProperties.json.cs │ │ │ │ │ │ ├── PrivateIPAddressesFilter.PowerShell.cs │ │ │ │ │ │ ├── PrivateIPAddressesFilter.TypeConverter.cs │ │ │ │ │ │ ├── PrivateIPAddressesFilter.cs │ │ │ │ │ │ ├── PrivateIPAddressesFilter.json.cs │ │ │ │ │ │ ├── ProfileType.PowerShell.cs │ │ │ │ │ │ ├── ProfileType.TypeConverter.cs │ │ │ │ │ │ ├── ProfileType.cs │ │ │ │ │ │ ├── ProfileType.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── RemoveVirtualMachineFromExadbVMClusterDetails.PowerShell.cs │ │ │ │ │ │ ├── RemoveVirtualMachineFromExadbVMClusterDetails.TypeConverter.cs │ │ │ │ │ │ ├── RemoveVirtualMachineFromExadbVMClusterDetails.cs │ │ │ │ │ │ ├── RemoveVirtualMachineFromExadbVMClusterDetails.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── RestoreAutonomousDatabaseDetails.PowerShell.cs │ │ │ │ │ │ ├── RestoreAutonomousDatabaseDetails.TypeConverter.cs │ │ │ │ │ │ ├── RestoreAutonomousDatabaseDetails.cs │ │ │ │ │ │ ├── RestoreAutonomousDatabaseDetails.json.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.PowerShell.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.TypeConverter.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.cs │ │ │ │ │ │ ├── SaasSubscriptionDetails.json.cs │ │ │ │ │ │ ├── ScheduledOperationsType.PowerShell.cs │ │ │ │ │ │ ├── ScheduledOperationsType.TypeConverter.cs │ │ │ │ │ │ ├── ScheduledOperationsType.cs │ │ │ │ │ │ ├── ScheduledOperationsType.json.cs │ │ │ │ │ │ ├── ScheduledOperationsTypeUpdate.PowerShell.cs │ │ │ │ │ │ ├── ScheduledOperationsTypeUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ScheduledOperationsTypeUpdate.cs │ │ │ │ │ │ ├── ScheduledOperationsTypeUpdate.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── SystemVersion.PowerShell.cs │ │ │ │ │ │ ├── SystemVersion.TypeConverter.cs │ │ │ │ │ │ ├── SystemVersion.cs │ │ │ │ │ │ ├── SystemVersion.json.cs │ │ │ │ │ │ ├── SystemVersionListResult.PowerShell.cs │ │ │ │ │ │ ├── SystemVersionListResult.TypeConverter.cs │ │ │ │ │ │ ├── SystemVersionListResult.cs │ │ │ │ │ │ ├── SystemVersionListResult.json.cs │ │ │ │ │ │ ├── SystemVersionProperties.PowerShell.cs │ │ │ │ │ │ ├── SystemVersionProperties.TypeConverter.cs │ │ │ │ │ │ ├── SystemVersionProperties.cs │ │ │ │ │ │ ├── SystemVersionProperties.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── VirtualNetworkAddress.PowerShell.cs │ │ │ │ │ │ ├── VirtualNetworkAddress.TypeConverter.cs │ │ │ │ │ │ ├── VirtualNetworkAddress.cs │ │ │ │ │ │ ├── VirtualNetworkAddress.json.cs │ │ │ │ │ │ ├── VirtualNetworkAddressListResult.PowerShell.cs │ │ │ │ │ │ ├── VirtualNetworkAddressListResult.TypeConverter.cs │ │ │ │ │ │ ├── VirtualNetworkAddressListResult.cs │ │ │ │ │ │ ├── VirtualNetworkAddressListResult.json.cs │ │ │ │ │ │ ├── VirtualNetworkAddressProperties.PowerShell.cs │ │ │ │ │ │ ├── VirtualNetworkAddressProperties.TypeConverter.cs │ │ │ │ │ │ ├── VirtualNetworkAddressProperties.cs │ │ │ │ │ │ └── VirtualNetworkAddressProperties.json.cs │ │ │ │ │ └── OracleDatabaseResourceManager.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── AddAzOracleDatabaseCloudExadataInfrastructureStorageCapacity_Add.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudExadataInfrastructureStorageCapacity_AddViaIdentity.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudVMClusterVM_Add.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudVMClusterVM_AddExpanded.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudVMClusterVM_AddViaIdentity.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudVMClusterVM_AddViaIdentityExpanded.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudVMClusterVM_AddViaJsonFilePath.cs │ │ │ │ │ ├── AddAzOracleDatabaseCloudVMClusterVM_AddViaJsonString.cs │ │ │ │ │ ├── AddAzOracleDatabaseOracleSubscriptionAzureSubscription_Add.cs │ │ │ │ │ ├── AddAzOracleDatabaseOracleSubscriptionAzureSubscription_AddExpanded.cs │ │ │ │ │ ├── AddAzOracleDatabaseOracleSubscriptionAzureSubscription_AddViaJsonFilePath.cs │ │ │ │ │ ├── AddAzOracleDatabaseOracleSubscriptionAzureSubscription_AddViaJsonString.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseBackup_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseBackup_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseBackup_GetViaIdentityAutonomousDatabase.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseBackup_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseCharacterSet_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseCharacterSet_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseCharacterSet_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseCharacterSet_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseNationalCharacterSet_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseNationalCharacterSet_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseNationalCharacterSet_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseNationalCharacterSet_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseVersion_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseVersion_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabaseVersion_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabase_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabase_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabase_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseAutonomousDatabase_List1.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudExadataInfrastructure_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudExadataInfrastructure_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudExadataInfrastructure_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudExadataInfrastructure_List1.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMClusterPrivateIpaddress_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMClusterPrivateIpaddress_ListExpanded.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMClusterPrivateIpaddress_ListViaJsonFilePath.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMClusterPrivateIpaddress_ListViaJsonString.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMCluster_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMCluster_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseCloudVMCluster_List1.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbNode_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbNode_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbNode_GetViaIdentityCloudVMCluster.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbNode_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbServer_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbServer_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbServer_GetViaIdentityCloudExadataInfrastructure.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbServer_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbSystemShape_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbSystemShape_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbSystemShape_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseDbSystemShape_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateView_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateView_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateView_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateView_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateZone_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateZone_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateZone_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseDnsPrivateZone_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseExadbVMCluster_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseExadbVMCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseExadbVMCluster_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseExadbVMCluster_List1.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbNode_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbNode_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbNode_GetViaIdentityExadbVMCluster.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbNode_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbStorageVault_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbStorageVault_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbStorageVault_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseExascaleDbStorageVault_List1.cs │ │ │ │ │ ├── GetAzOracleDatabaseFlexComponent_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseFlexComponent_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseFlexComponent_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseFlexComponent_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiMinorVersion_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiMinorVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiMinorVersion_GetViaIdentityGiVersion.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiMinorVersion_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiMinorVersion_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiVersion_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiVersion_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseGiVersion_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseOperation_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseOracleSubscriptionActivationLink_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseOracleSubscriptionCloudAccountDetail_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseOracleSubscriptionSaaSubscriptionDetail_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseOracleSubscription_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseOracleSubscription_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseSystemVersion_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseSystemVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseSystemVersion_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzOracleDatabaseSystemVersion_List.cs │ │ │ │ │ ├── GetAzOracleDatabaseVirtualNetworkAddress_Get.cs │ │ │ │ │ ├── GetAzOracleDatabaseVirtualNetworkAddress_GetViaIdentity.cs │ │ │ │ │ ├── GetAzOracleDatabaseVirtualNetworkAddress_GetViaIdentityCloudVMCluster.cs │ │ │ │ │ ├── GetAzOracleDatabaseVirtualNetworkAddress_List.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_Action.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionViaIdentity.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionViaIdentityCloudVMCluster.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionViaIdentityCloudVMClusterExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionDbNode_ActionViaJsonString.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_Action.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionViaIdentity.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionViaIdentityExadbVMCluster.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionViaIdentityExadbVMClusterExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseActionExascaleDbNode_ActionViaJsonString.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseShrinkAutonomousDatabase_Shrink.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseShrinkAutonomousDatabase_ShrinkViaIdentity.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseSwitchoverAutonomousDatabase_Switchover.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseSwitchoverAutonomousDatabase_SwitchoverExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseSwitchoverAutonomousDatabase_SwitchoverViaIdentity.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseSwitchoverAutonomousDatabase_SwitchoverViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseSwitchoverAutonomousDatabase_SwitchoverViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzOracleDatabaseSwitchoverAutonomousDatabase_SwitchoverViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseBackup_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseBackup_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseBackup_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseWallet_Generate.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseWallet_GenerateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseWallet_GenerateViaIdentity.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseWallet_GenerateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseWallet_GenerateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabaseWallet_GenerateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabase_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabase_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseAutonomousDatabase_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseCloudExadataInfrastructure_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseCloudExadataInfrastructure_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseCloudExadataInfrastructure_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseCloudVMCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseCloudVMCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseCloudVMCluster_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseExadbVMCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseExadbVMCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseExadbVMCluster_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseExascaleDbStorageVault_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseExascaleDbStorageVault_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseExascaleDbStorageVault_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseOracleSubscription_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseOracleSubscription_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseOracleSubscription_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzOracleDatabaseVirtualNetworkAddress_CreateExpanded.cs │ │ │ │ │ ├── NewAzOracleDatabaseVirtualNetworkAddress_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzOracleDatabaseVirtualNetworkAddress_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseAutonomousDatabaseBackup_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseAutonomousDatabaseBackup_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseAutonomousDatabaseBackup_DeleteViaIdentityAutonomousDatabase.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseAutonomousDatabase_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseAutonomousDatabase_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudExadataInfrastructure_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudExadataInfrastructure_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMClusterVM_Remove.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMClusterVM_RemoveExpanded.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMClusterVM_RemoveViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMClusterVM_RemoveViaIdentityExpanded.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMClusterVM_RemoveViaJsonFilePath.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMClusterVM_RemoveViaJsonString.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMCluster_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseCloudVMCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMClusterVM_Remove.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMClusterVM_RemoveExpanded.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMClusterVM_RemoveViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMClusterVM_RemoveViaIdentityExpanded.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMClusterVM_RemoveViaJsonFilePath.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMClusterVM_RemoveViaJsonString.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMCluster_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExadbVMCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExascaleDbStorageVault_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseExascaleDbStorageVault_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseOracleSubscription_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseVirtualNetworkAddress_Delete.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseVirtualNetworkAddress_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzOracleDatabaseVirtualNetworkAddress_DeleteViaIdentityCloudVMCluster.cs │ │ │ │ │ ├── RenameAzOracleDatabaseAutonomousDatabaseDisasterRecoveryConfiguration_Change.cs │ │ │ │ │ ├── RenameAzOracleDatabaseAutonomousDatabaseDisasterRecoveryConfiguration_ChangeExpanded.cs │ │ │ │ │ ├── RenameAzOracleDatabaseAutonomousDatabaseDisasterRecoveryConfiguration_ChangeViaIdentity.cs │ │ │ │ │ ├── RenameAzOracleDatabaseAutonomousDatabaseDisasterRecoveryConfiguration_ChangeViaIdentityExpanded.cs │ │ │ │ │ ├── RenameAzOracleDatabaseAutonomousDatabaseDisasterRecoveryConfiguration_ChangeViaJsonFilePath.cs │ │ │ │ │ ├── RenameAzOracleDatabaseAutonomousDatabaseDisasterRecoveryConfiguration_ChangeViaJsonString.cs │ │ │ │ │ ├── RestoreAzOracleDatabaseAutonomousDatabase_Restore.cs │ │ │ │ │ ├── RestoreAzOracleDatabaseAutonomousDatabase_RestoreExpanded.cs │ │ │ │ │ ├── RestoreAzOracleDatabaseAutonomousDatabase_RestoreViaIdentity.cs │ │ │ │ │ ├── RestoreAzOracleDatabaseAutonomousDatabase_RestoreViaIdentityExpanded.cs │ │ │ │ │ ├── RestoreAzOracleDatabaseAutonomousDatabase_RestoreViaJsonFilePath.cs │ │ │ │ │ ├── RestoreAzOracleDatabaseAutonomousDatabase_RestoreViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabaseBackup_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabaseBackup_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabaseBackup_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_Failover.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_FailoverExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_FailoverViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_FailoverViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseAutonomousDatabase_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseCloudExadataInfrastructure_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseCloudExadataInfrastructure_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseCloudExadataInfrastructure_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseCloudVMCluster_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseCloudVMCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseCloudVMCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseExadbVMCluster_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseExadbVMCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseExadbVMCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseOracleSubscription_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseOracleSubscription_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseOracleSubscription_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzOracleDatabaseVirtualNetworkAddress_UpdateExpanded.cs │ │ │ │ │ ├── SetAzOracleDatabaseVirtualNetworkAddress_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzOracleDatabaseVirtualNetworkAddress_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabaseBackup_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabaseBackup_UpdateViaIdentityAutonomousDatabaseExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabaseBackup_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabaseBackup_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabaseBackup_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabase_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabase_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabase_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseAutonomousDatabase_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudExadataInfrastructure_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudExadataInfrastructure_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudExadataInfrastructure_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudExadataInfrastructure_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudVMCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudVMCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudVMCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseCloudVMCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExadbVMCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExadbVMCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExadbVMCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExadbVMCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExascaleDbStorageVault_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExascaleDbStorageVault_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExascaleDbStorageVault_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseExascaleDbStorageVault_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseOracleSubscription_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseOracleSubscription_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseOracleSubscription_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseVirtualNetworkAddress_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzOracleDatabaseVirtualNetworkAddress_UpdateViaIdentityCloudVMClusterExpanded.cs │ │ │ │ │ └── UpdateAzOracleDatabaseVirtualNetworkAddress_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.OracleDatabase.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ ├── tspconfig.yaml │ │ └── versions.tsp │ ├── Pinecone.VectorDb.Management │ │ ├── .gitignore │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-10-22-preview │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── Organizations_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Delete_MaximumSet_Gen.json │ │ │ │ ├── Organizations_Get_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Organizations_ListBySubscription_MaximumSet_Gen.json │ │ │ │ └── Organizations_Update_MaximumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Pinecone.csproj │ │ │ ├── Az.Pinecone.nuspec │ │ │ ├── Az.Pinecone.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Pinecone.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── OfferDetails.PowerShell.cs │ │ │ │ │ │ ├── OfferDetails.TypeConverter.cs │ │ │ │ │ │ ├── OfferDetails.cs │ │ │ │ │ │ ├── OfferDetails.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OrganizationProperties.PowerShell.cs │ │ │ │ │ │ ├── OrganizationProperties.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationProperties.cs │ │ │ │ │ │ ├── OrganizationProperties.json.cs │ │ │ │ │ │ ├── OrganizationResource.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResource.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResource.cs │ │ │ │ │ │ ├── OrganizationResource.json.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.cs │ │ │ │ │ │ ├── OrganizationResourceListResult.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.cs │ │ │ │ │ │ ├── OrganizationResourceUpdate.json.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── OrganizationResourceUpdateTags.json.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── OrganizationsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── PartnerProperties.PowerShell.cs │ │ │ │ │ │ ├── PartnerProperties.TypeConverter.cs │ │ │ │ │ │ ├── PartnerProperties.cs │ │ │ │ │ │ ├── PartnerProperties.json.cs │ │ │ │ │ │ ├── PineconeIdentity.PowerShell.cs │ │ │ │ │ │ ├── PineconeIdentity.TypeConverter.cs │ │ │ │ │ │ ├── PineconeIdentity.cs │ │ │ │ │ │ ├── PineconeIdentity.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.PowerShell.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.TypeConverter.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.cs │ │ │ │ │ │ ├── SingleSignOnPropertiesV2.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ └── UserDetails.json.cs │ │ │ │ │ └── PineconeManagementService.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzPineconeOperation_List.cs │ │ │ │ │ ├── GetAzPineconeOrganization_Get.cs │ │ │ │ │ ├── GetAzPineconeOrganization_GetViaIdentity.cs │ │ │ │ │ ├── GetAzPineconeOrganization_List.cs │ │ │ │ │ ├── GetAzPineconeOrganization_List1.cs │ │ │ │ │ ├── NewAzPineconeOrganization_CreateExpanded.cs │ │ │ │ │ ├── NewAzPineconeOrganization_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzPineconeOrganization_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzPineconeOrganization_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzPineconeOrganization_Delete.cs │ │ │ │ │ ├── RemoveAzPineconeOrganization_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzPineconeOrganization_UpdateExpanded.cs │ │ │ │ │ ├── SetAzPineconeOrganization_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzPineconeOrganization_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzPineconeOrganization_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzPineconeOrganization_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Pinecone.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Qumulo.Storage.Management │ │ ├── LiftrBase.Storage │ │ │ └── main.tsp │ │ ├── LiftrBase │ │ │ └── main.tsp │ │ ├── client.tsp │ │ ├── examples │ │ │ └── 2024-06-19 │ │ │ │ ├── FileSystems_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── FileSystems_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── FileSystems_Delete_MaximumSet_Gen.json │ │ │ │ ├── FileSystems_Delete_MinimumSet_Gen.json │ │ │ │ ├── FileSystems_Get_MaximumSet_Gen.json │ │ │ │ ├── FileSystems_Get_MinimumSet_Gen.json │ │ │ │ ├── FileSystems_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── FileSystems_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── FileSystems_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── FileSystems_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── FileSystems_Update_MaximumSet_Gen.json │ │ │ │ ├── FileSystems_Update_MinimumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ └── Operations_List_MinimumSet_Gen.json │ │ ├── main.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Qumulo.csproj │ │ │ ├── Az.Qumulo.nuspec │ │ │ ├── Az.Qumulo.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Qumulo.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── FileSystemResource.PowerShell.cs │ │ │ │ │ │ ├── FileSystemResource.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemResource.cs │ │ │ │ │ │ ├── FileSystemResource.json.cs │ │ │ │ │ │ ├── FileSystemResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── FileSystemResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemResourceListResult.cs │ │ │ │ │ │ ├── FileSystemResourceListResult.json.cs │ │ │ │ │ │ ├── FileSystemResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── FileSystemResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemResourceProperties.cs │ │ │ │ │ │ ├── FileSystemResourceProperties.json.cs │ │ │ │ │ │ ├── FileSystemResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── FileSystemResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemResourceUpdate.cs │ │ │ │ │ │ ├── FileSystemResourceUpdate.json.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateProperties.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateProperties.json.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateTags.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── FileSystemResourceUpdateTags.json.cs │ │ │ │ │ │ ├── FileSystemsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── FileSystemsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── FileSystemsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── FileSystemsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── MarketplaceDetails.PowerShell.cs │ │ │ │ │ │ ├── MarketplaceDetails.TypeConverter.cs │ │ │ │ │ │ ├── MarketplaceDetails.cs │ │ │ │ │ │ ├── MarketplaceDetails.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── QumuloIdentity.PowerShell.cs │ │ │ │ │ │ ├── QumuloIdentity.TypeConverter.cs │ │ │ │ │ │ ├── QumuloIdentity.cs │ │ │ │ │ │ ├── QumuloIdentity.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── UserDetails.PowerShell.cs │ │ │ │ │ │ ├── UserDetails.TypeConverter.cs │ │ │ │ │ │ ├── UserDetails.cs │ │ │ │ │ │ └── UserDetails.json.cs │ │ │ │ │ └── QumuloStorage.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzQumuloFileSystem_Get.cs │ │ │ │ │ ├── GetAzQumuloFileSystem_GetViaIdentity.cs │ │ │ │ │ ├── GetAzQumuloFileSystem_List.cs │ │ │ │ │ ├── GetAzQumuloFileSystem_List1.cs │ │ │ │ │ ├── GetAzQumuloOperation_List.cs │ │ │ │ │ ├── NewAzQumuloFileSystem_CreateExpanded.cs │ │ │ │ │ ├── NewAzQumuloFileSystem_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzQumuloFileSystem_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzQumuloFileSystem_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzQumuloFileSystem_Delete.cs │ │ │ │ │ ├── RemoveAzQumuloFileSystem_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzQumuloFileSystem_UpdateExpanded.cs │ │ │ │ │ ├── SetAzQumuloFileSystem_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzQumuloFileSystem_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzQumuloFileSystem_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzQumuloFileSystem_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Qumulo.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── RecoveryServices.brown │ │ ├── PrivateLinkResource.tsp │ │ ├── Vault.tsp │ │ ├── VaultExtendedInfoResource.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── readme.go.md │ │ ├── readme.md │ │ ├── readme.nodejs.md │ │ ├── readme.python.md │ │ ├── readme.ruby.md │ │ ├── readme.typescript.md │ │ ├── routes.tsp │ │ ├── sdk-suppressions.yaml │ │ ├── suppressions.yaml │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.RecoveryServices.csproj │ │ │ ├── Az.RecoveryServices.nuspec │ │ │ ├── Az.RecoveryServices.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.RecoveryServices.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AssociatedIdentity.PowerShell.cs │ │ │ │ │ │ ├── AssociatedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── AssociatedIdentity.cs │ │ │ │ │ │ ├── AssociatedIdentity.json.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.PowerShell.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.TypeConverter.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.cs │ │ │ │ │ │ ├── AzureMonitorAlertSettings.json.cs │ │ │ │ │ │ ├── CapabilitiesProperties.PowerShell.cs │ │ │ │ │ │ ├── CapabilitiesProperties.TypeConverter.cs │ │ │ │ │ │ ├── CapabilitiesProperties.cs │ │ │ │ │ │ ├── CapabilitiesProperties.json.cs │ │ │ │ │ │ ├── CapabilitiesResponse.PowerShell.cs │ │ │ │ │ │ ├── CapabilitiesResponse.TypeConverter.cs │ │ │ │ │ │ ├── CapabilitiesResponse.cs │ │ │ │ │ │ ├── CapabilitiesResponse.json.cs │ │ │ │ │ │ ├── CapabilitiesResponseProperties.PowerShell.cs │ │ │ │ │ │ ├── CapabilitiesResponseProperties.TypeConverter.cs │ │ │ │ │ │ ├── CapabilitiesResponseProperties.cs │ │ │ │ │ │ ├── CapabilitiesResponseProperties.json.cs │ │ │ │ │ │ ├── CertificateRequest.PowerShell.cs │ │ │ │ │ │ ├── CertificateRequest.TypeConverter.cs │ │ │ │ │ │ ├── CertificateRequest.cs │ │ │ │ │ │ ├── CertificateRequest.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityParameters.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityParameters.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityParameters.cs │ │ │ │ │ │ ├── CheckNameAvailabilityParameters.json.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.PowerShell.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.TypeConverter.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ │ │ ├── CheckNameAvailabilityResult.json.cs │ │ │ │ │ │ ├── ClassicAlertSettings.PowerShell.cs │ │ │ │ │ │ ├── ClassicAlertSettings.TypeConverter.cs │ │ │ │ │ │ ├── ClassicAlertSettings.cs │ │ │ │ │ │ ├── ClassicAlertSettings.json.cs │ │ │ │ │ │ ├── ClientDiscoveryDisplay.PowerShell.cs │ │ │ │ │ │ ├── ClientDiscoveryDisplay.TypeConverter.cs │ │ │ │ │ │ ├── ClientDiscoveryDisplay.cs │ │ │ │ │ │ ├── ClientDiscoveryDisplay.json.cs │ │ │ │ │ │ ├── ClientDiscoveryForLogSpecification.PowerShell.cs │ │ │ │ │ │ ├── ClientDiscoveryForLogSpecification.TypeConverter.cs │ │ │ │ │ │ ├── ClientDiscoveryForLogSpecification.cs │ │ │ │ │ │ ├── ClientDiscoveryForLogSpecification.json.cs │ │ │ │ │ │ ├── ClientDiscoveryForProperties.PowerShell.cs │ │ │ │ │ │ ├── ClientDiscoveryForProperties.TypeConverter.cs │ │ │ │ │ │ ├── ClientDiscoveryForProperties.cs │ │ │ │ │ │ ├── ClientDiscoveryForProperties.json.cs │ │ │ │ │ │ ├── ClientDiscoveryForServiceSpecification.PowerShell.cs │ │ │ │ │ │ ├── ClientDiscoveryForServiceSpecification.TypeConverter.cs │ │ │ │ │ │ ├── ClientDiscoveryForServiceSpecification.cs │ │ │ │ │ │ ├── ClientDiscoveryForServiceSpecification.json.cs │ │ │ │ │ │ ├── ClientDiscoveryResponse.PowerShell.cs │ │ │ │ │ │ ├── ClientDiscoveryResponse.TypeConverter.cs │ │ │ │ │ │ ├── ClientDiscoveryResponse.cs │ │ │ │ │ │ ├── ClientDiscoveryResponse.json.cs │ │ │ │ │ │ ├── ClientDiscoveryValueForSingleApi.PowerShell.cs │ │ │ │ │ │ ├── ClientDiscoveryValueForSingleApi.TypeConverter.cs │ │ │ │ │ │ ├── ClientDiscoveryValueForSingleApi.cs │ │ │ │ │ │ ├── ClientDiscoveryValueForSingleApi.json.cs │ │ │ │ │ │ ├── CloudError.PowerShell.cs │ │ │ │ │ │ ├── CloudError.TypeConverter.cs │ │ │ │ │ │ ├── CloudError.cs │ │ │ │ │ │ ├── CloudError.json.cs │ │ │ │ │ │ ├── CmkKekIdentity.PowerShell.cs │ │ │ │ │ │ ├── CmkKekIdentity.TypeConverter.cs │ │ │ │ │ │ ├── CmkKekIdentity.cs │ │ │ │ │ │ ├── CmkKekIdentity.json.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.cs │ │ │ │ │ │ ├── CmkKeyVaultProperties.json.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.PowerShell.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.TypeConverter.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.cs │ │ │ │ │ │ ├── CrossSubscriptionRestoreSettings.json.cs │ │ │ │ │ │ ├── DnsZone.PowerShell.cs │ │ │ │ │ │ ├── DnsZone.TypeConverter.cs │ │ │ │ │ │ ├── DnsZone.cs │ │ │ │ │ │ ├── DnsZone.json.cs │ │ │ │ │ │ ├── DnsZoneResponse.PowerShell.cs │ │ │ │ │ │ ├── DnsZoneResponse.TypeConverter.cs │ │ │ │ │ │ ├── DnsZoneResponse.cs │ │ │ │ │ │ ├── DnsZoneResponse.json.cs │ │ │ │ │ │ ├── Error.PowerShell.cs │ │ │ │ │ │ ├── Error.TypeConverter.cs │ │ │ │ │ │ ├── Error.cs │ │ │ │ │ │ ├── Error.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── IdentityData.PowerShell.cs │ │ │ │ │ │ ├── IdentityData.TypeConverter.cs │ │ │ │ │ │ ├── IdentityData.cs │ │ │ │ │ │ ├── IdentityData.json.cs │ │ │ │ │ │ ├── IdentityDataUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── IdentityDataUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── IdentityDataUserAssignedIdentities.cs │ │ │ │ │ │ ├── IdentityDataUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── IdentityDataUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── ImmutabilitySettings.PowerShell.cs │ │ │ │ │ │ ├── ImmutabilitySettings.TypeConverter.cs │ │ │ │ │ │ ├── ImmutabilitySettings.cs │ │ │ │ │ │ ├── ImmutabilitySettings.json.cs │ │ │ │ │ │ ├── JobsSummary.PowerShell.cs │ │ │ │ │ │ ├── JobsSummary.TypeConverter.cs │ │ │ │ │ │ ├── JobsSummary.cs │ │ │ │ │ │ ├── JobsSummary.json.cs │ │ │ │ │ │ ├── MonitoringSettings.PowerShell.cs │ │ │ │ │ │ ├── MonitoringSettings.TypeConverter.cs │ │ │ │ │ │ ├── MonitoringSettings.cs │ │ │ │ │ │ ├── MonitoringSettings.json.cs │ │ │ │ │ │ ├── MonitoringSummary.PowerShell.cs │ │ │ │ │ │ ├── MonitoringSummary.TypeConverter.cs │ │ │ │ │ │ ├── MonitoringSummary.cs │ │ │ │ │ │ ├── MonitoringSummary.json.cs │ │ │ │ │ │ ├── NameInfo.PowerShell.cs │ │ │ │ │ │ ├── NameInfo.TypeConverter.cs │ │ │ │ │ │ ├── NameInfo.cs │ │ │ │ │ │ ├── NameInfo.json.cs │ │ │ │ │ │ ├── OperationResource.PowerShell.cs │ │ │ │ │ │ ├── OperationResource.TypeConverter.cs │ │ │ │ │ │ ├── OperationResource.cs │ │ │ │ │ │ ├── OperationResource.json.cs │ │ │ │ │ │ ├── PatchTrackedResource.PowerShell.cs │ │ │ │ │ │ ├── PatchTrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── PatchTrackedResource.cs │ │ │ │ │ │ ├── PatchTrackedResource.json.cs │ │ │ │ │ │ ├── PatchTrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── PatchTrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── PatchTrackedResourceTags.cs │ │ │ │ │ │ ├── PatchTrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── PatchTrackedResourceTags.json.cs │ │ │ │ │ │ ├── PatchVault.PowerShell.cs │ │ │ │ │ │ ├── PatchVault.TypeConverter.cs │ │ │ │ │ │ ├── PatchVault.cs │ │ │ │ │ │ ├── PatchVault.json.cs │ │ │ │ │ │ ├── PrivateEndpoint.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpoint.cs │ │ │ │ │ │ ├── PrivateEndpoint.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.cs │ │ │ │ │ │ ├── PrivateEndpointConnection.json.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionVaultProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionVaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionVaultProperties.cs │ │ │ │ │ │ ├── PrivateEndpointConnectionVaultProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResource.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResource.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResource.cs │ │ │ │ │ │ ├── PrivateLinkResource.json.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.cs │ │ │ │ │ │ ├── PrivateLinkResourceProperties.json.cs │ │ │ │ │ │ ├── PrivateLinkResources.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkResources.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkResources.cs │ │ │ │ │ │ ├── PrivateLinkResources.json.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.PowerShell.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.TypeConverter.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ │ │ │ ├── PrivateLinkServiceConnectionState.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── RawCertificateData.PowerShell.cs │ │ │ │ │ │ ├── RawCertificateData.TypeConverter.cs │ │ │ │ │ │ ├── RawCertificateData.cs │ │ │ │ │ │ ├── RawCertificateData.json.cs │ │ │ │ │ │ ├── RecoveryServicesIdentity.PowerShell.cs │ │ │ │ │ │ ├── RecoveryServicesIdentity.TypeConverter.cs │ │ │ │ │ │ ├── RecoveryServicesIdentity.cs │ │ │ │ │ │ ├── RecoveryServicesIdentity.json.cs │ │ │ │ │ │ ├── ReplicationUsage.PowerShell.cs │ │ │ │ │ │ ├── ReplicationUsage.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationUsage.cs │ │ │ │ │ │ ├── ReplicationUsage.json.cs │ │ │ │ │ │ ├── ReplicationUsageList.PowerShell.cs │ │ │ │ │ │ ├── ReplicationUsageList.TypeConverter.cs │ │ │ │ │ │ ├── ReplicationUsageList.cs │ │ │ │ │ │ ├── ReplicationUsageList.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceCapabilities.PowerShell.cs │ │ │ │ │ │ ├── ResourceCapabilities.TypeConverter.cs │ │ │ │ │ │ ├── ResourceCapabilities.cs │ │ │ │ │ │ ├── ResourceCapabilities.json.cs │ │ │ │ │ │ ├── ResourceCapabilitiesBase.PowerShell.cs │ │ │ │ │ │ ├── ResourceCapabilitiesBase.TypeConverter.cs │ │ │ │ │ │ ├── ResourceCapabilitiesBase.cs │ │ │ │ │ │ ├── ResourceCapabilitiesBase.json.cs │ │ │ │ │ │ ├── ResourceCertificateAndAadDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceCertificateAndAadDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceCertificateAndAadDetails.cs │ │ │ │ │ │ ├── ResourceCertificateAndAadDetails.json.cs │ │ │ │ │ │ ├── ResourceCertificateAndAcsDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceCertificateAndAcsDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceCertificateAndAcsDetails.cs │ │ │ │ │ │ ├── ResourceCertificateAndAcsDetails.json.cs │ │ │ │ │ │ ├── ResourceCertificateDetails.PowerShell.cs │ │ │ │ │ │ ├── ResourceCertificateDetails.TypeConverter.cs │ │ │ │ │ │ ├── ResourceCertificateDetails.cs │ │ │ │ │ │ ├── ResourceCertificateDetails.json.cs │ │ │ │ │ │ ├── RestoreSettings.PowerShell.cs │ │ │ │ │ │ ├── RestoreSettings.TypeConverter.cs │ │ │ │ │ │ ├── RestoreSettings.cs │ │ │ │ │ │ ├── RestoreSettings.json.cs │ │ │ │ │ │ ├── SecuritySettings.PowerShell.cs │ │ │ │ │ │ ├── SecuritySettings.TypeConverter.cs │ │ │ │ │ │ ├── SecuritySettings.cs │ │ │ │ │ │ ├── SecuritySettings.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── SoftDeleteSettings.PowerShell.cs │ │ │ │ │ │ ├── SoftDeleteSettings.TypeConverter.cs │ │ │ │ │ │ ├── SoftDeleteSettings.cs │ │ │ │ │ │ ├── SoftDeleteSettings.json.cs │ │ │ │ │ │ ├── SourceScanConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SourceScanConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SourceScanConfiguration.cs │ │ │ │ │ │ ├── SourceScanConfiguration.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UpgradeDetails.PowerShell.cs │ │ │ │ │ │ ├── UpgradeDetails.TypeConverter.cs │ │ │ │ │ │ ├── UpgradeDetails.cs │ │ │ │ │ │ ├── UpgradeDetails.json.cs │ │ │ │ │ │ ├── UserIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserIdentity.cs │ │ │ │ │ │ ├── UserIdentity.json.cs │ │ │ │ │ │ ├── Vault.PowerShell.cs │ │ │ │ │ │ ├── Vault.TypeConverter.cs │ │ │ │ │ │ ├── Vault.cs │ │ │ │ │ │ ├── Vault.json.cs │ │ │ │ │ │ ├── VaultCertificateResponse.PowerShell.cs │ │ │ │ │ │ ├── VaultCertificateResponse.TypeConverter.cs │ │ │ │ │ │ ├── VaultCertificateResponse.cs │ │ │ │ │ │ ├── VaultCertificateResponse.json.cs │ │ │ │ │ │ ├── VaultExtendedInfo.PowerShell.cs │ │ │ │ │ │ ├── VaultExtendedInfo.TypeConverter.cs │ │ │ │ │ │ ├── VaultExtendedInfo.cs │ │ │ │ │ │ ├── VaultExtendedInfo.json.cs │ │ │ │ │ │ ├── VaultExtendedInfoResource.PowerShell.cs │ │ │ │ │ │ ├── VaultExtendedInfoResource.TypeConverter.cs │ │ │ │ │ │ ├── VaultExtendedInfoResource.cs │ │ │ │ │ │ ├── VaultExtendedInfoResource.json.cs │ │ │ │ │ │ ├── VaultList.PowerShell.cs │ │ │ │ │ │ ├── VaultList.TypeConverter.cs │ │ │ │ │ │ ├── VaultList.cs │ │ │ │ │ │ ├── VaultList.json.cs │ │ │ │ │ │ ├── VaultProperties.PowerShell.cs │ │ │ │ │ │ ├── VaultProperties.TypeConverter.cs │ │ │ │ │ │ ├── VaultProperties.cs │ │ │ │ │ │ ├── VaultProperties.json.cs │ │ │ │ │ │ ├── VaultPropertiesEncryption.PowerShell.cs │ │ │ │ │ │ ├── VaultPropertiesEncryption.TypeConverter.cs │ │ │ │ │ │ ├── VaultPropertiesEncryption.cs │ │ │ │ │ │ ├── VaultPropertiesEncryption.json.cs │ │ │ │ │ │ ├── VaultPropertiesMoveDetails.PowerShell.cs │ │ │ │ │ │ ├── VaultPropertiesMoveDetails.TypeConverter.cs │ │ │ │ │ │ ├── VaultPropertiesMoveDetails.cs │ │ │ │ │ │ ├── VaultPropertiesMoveDetails.json.cs │ │ │ │ │ │ ├── VaultPropertiesRedundancySettings.PowerShell.cs │ │ │ │ │ │ ├── VaultPropertiesRedundancySettings.TypeConverter.cs │ │ │ │ │ │ ├── VaultPropertiesRedundancySettings.cs │ │ │ │ │ │ ├── VaultPropertiesRedundancySettings.json.cs │ │ │ │ │ │ ├── VaultUsage.PowerShell.cs │ │ │ │ │ │ ├── VaultUsage.TypeConverter.cs │ │ │ │ │ │ ├── VaultUsage.cs │ │ │ │ │ │ ├── VaultUsage.json.cs │ │ │ │ │ │ ├── VaultUsageList.PowerShell.cs │ │ │ │ │ │ ├── VaultUsageList.TypeConverter.cs │ │ │ │ │ │ ├── VaultUsageList.cs │ │ │ │ │ │ └── VaultUsageList.json.cs │ │ │ │ │ └── RecoveryServicesClient.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzRecoveryServicesOperationResult_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesOperationResult_GetViaIdentityVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesOperationStatus_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesOperationStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesOperationStatus_GetViaIdentityVault.cs │ │ │ │ │ ├── GetAzRecoveryServicesOperation_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesReplicationUsage_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesUsage_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesVaultExtendedInfo_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesVaultExtendedInfo_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesVault_Get.cs │ │ │ │ │ ├── GetAzRecoveryServicesVault_GetViaIdentity.cs │ │ │ │ │ ├── GetAzRecoveryServicesVault_List.cs │ │ │ │ │ ├── GetAzRecoveryServicesVault_List1.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesCapabilityRecoveryService_Capabilities.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesCapabilityRecoveryService_CapabilitiesExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesCapabilityRecoveryService_CapabilitiesViaIdentity.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesCapabilityRecoveryService_CapabilitiesViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesCapabilityRecoveryService_CapabilitiesViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzRecoveryServicesCapabilityRecoveryService_CapabilitiesViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesVaultCertificate_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesVaultCertificate_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesVaultCertificate_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesVaultExtendedInfo_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesVaultExtendedInfo_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesVaultExtendedInfo_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzRecoveryServicesVault_CreateExpanded.cs │ │ │ │ │ ├── NewAzRecoveryServicesVault_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzRecoveryServicesVault_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesRegisteredIdentity_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesRegisteredIdentity_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesRegisteredIdentity_DeleteViaIdentityVault.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesVault_Delete.cs │ │ │ │ │ ├── RemoveAzRecoveryServicesVault_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzRecoveryServicesVaultExtendedInfo_UpdateExpanded.cs │ │ │ │ │ ├── SetAzRecoveryServicesVaultExtendedInfo_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzRecoveryServicesVaultExtendedInfo_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzRecoveryServicesVault_UpdateExpanded.cs │ │ │ │ │ ├── SetAzRecoveryServicesVault_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzRecoveryServicesVault_UpdateViaJsonString.cs │ │ │ │ │ ├── TestAzRecoveryServicesRecoveryServiceNameAvailability_Check.cs │ │ │ │ │ ├── TestAzRecoveryServicesRecoveryServiceNameAvailability_CheckExpanded.cs │ │ │ │ │ ├── TestAzRecoveryServicesRecoveryServiceNameAvailability_CheckViaIdentity.cs │ │ │ │ │ ├── TestAzRecoveryServicesRecoveryServiceNameAvailability_CheckViaIdentityExpanded.cs │ │ │ │ │ ├── TestAzRecoveryServicesRecoveryServiceNameAvailability_CheckViaJsonFilePath.cs │ │ │ │ │ ├── TestAzRecoveryServicesRecoveryServiceNameAvailability_CheckViaJsonString.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesVaultExtendedInfo_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesVaultExtendedInfo_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesVaultExtendedInfo_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesVaultExtendedInfo_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzRecoveryServicesVault_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzRecoveryServicesVault_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.RecoveryServices.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── ScVmm.Management │ │ ├── AvailabilitySet.tsp │ │ ├── BackCompat.tsp │ │ ├── Cloud.tsp │ │ ├── GuestAgent.tsp │ │ ├── InventoryItem.tsp │ │ ├── VirtualMachineInstance.tsp │ │ ├── VirtualMachineTemplate.tsp │ │ ├── VirtualNetwork.tsp │ │ ├── VmInstanceHybridIdentityMetadata.tsp │ │ ├── VmmServer.tsp │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2023-10-07 │ │ │ │ ├── AvailabilitySets_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Delete_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Delete_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Get_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Get_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Update_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Update_MinimumSet_Gen.json │ │ │ │ ├── Clouds_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Clouds_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── Clouds_Delete_MaximumSet_Gen.json │ │ │ │ ├── Clouds_Delete_MinimumSet_Gen.json │ │ │ │ ├── Clouds_Get_MaximumSet_Gen.json │ │ │ │ ├── Clouds_Get_MinimumSet_Gen.json │ │ │ │ ├── Clouds_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Clouds_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── Clouds_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Clouds_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── Clouds_Update_MaximumSet_Gen.json │ │ │ │ ├── Clouds_Update_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_Create_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_Create_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_Delete_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_Delete_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_Get_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_Get_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_ListByVirtualMachineInstance_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_ListByVirtualMachineInstance_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_Create_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_Create_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_Delete_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_Delete_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_Get_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_Get_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_ListByVmmServer_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_ListByVmmServer_MinimumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateCheckpoint_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateCheckpoint_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_DeleteCheckpoint_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_DeleteCheckpoint_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Delete_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Delete_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Get_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Get_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_List_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_List_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Restart_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Restart_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_RestoreCheckpoint_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_RestoreCheckpoint_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Start_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Start_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Stop_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Stop_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Update_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Update_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Delete_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Delete_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Get_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Get_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Update_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Update_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Delete_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Delete_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Get_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Get_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Update_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Update_MinimumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_Get_MaximumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_Get_MinimumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_ListByVirtualMachineInstance_MaximumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_ListByVirtualMachineInstance_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_Delete_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_Delete_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_Get_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_Get_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_Update_MaximumSet_Gen.json │ │ │ │ └── VmmServers_Update_MinimumSet_Gen.json │ │ │ └── 2024-06-01 │ │ │ │ ├── AvailabilitySets_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Delete_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Delete_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Get_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Get_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Update_MaximumSet_Gen.json │ │ │ │ ├── AvailabilitySets_Update_MinimumSet_Gen.json │ │ │ │ ├── Clouds_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── Clouds_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── Clouds_Delete_MaximumSet_Gen.json │ │ │ │ ├── Clouds_Delete_MinimumSet_Gen.json │ │ │ │ ├── Clouds_Get_MaximumSet_Gen.json │ │ │ │ ├── Clouds_Get_MinimumSet_Gen.json │ │ │ │ ├── Clouds_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── Clouds_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── Clouds_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── Clouds_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── Clouds_Update_MaximumSet_Gen.json │ │ │ │ ├── Clouds_Update_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_Create_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_Create_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_Delete_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_Delete_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_Get_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_Get_MinimumSet_Gen.json │ │ │ │ ├── GuestAgents_ListByVirtualMachineInstance_MaximumSet_Gen.json │ │ │ │ ├── GuestAgents_ListByVirtualMachineInstance_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_Create_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_Create_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_Delete_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_Delete_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_Get_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_Get_MinimumSet_Gen.json │ │ │ │ ├── InventoryItems_ListByVmmServer_MaximumSet_Gen.json │ │ │ │ ├── InventoryItems_ListByVmmServer_MinimumSet_Gen.json │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateCheckpoint_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateCheckpoint_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_DeleteCheckpoint_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_DeleteCheckpoint_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Delete_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Delete_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Get_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Get_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_List_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_List_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Restart_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Restart_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_RestoreCheckpoint_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_RestoreCheckpoint_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Start_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Start_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Stop_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Stop_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Update_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineInstances_Update_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Delete_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Delete_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Get_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Get_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Update_MaximumSet_Gen.json │ │ │ │ ├── VirtualMachineTemplates_Update_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Delete_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Delete_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Get_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Get_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Update_MaximumSet_Gen.json │ │ │ │ ├── VirtualNetworks_Update_MinimumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_Get_MaximumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_Get_MinimumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_ListByVirtualMachineInstance_MaximumSet_Gen.json │ │ │ │ ├── VmInstanceHybridIdentityMetadatas_ListByVirtualMachineInstance_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_Delete_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_Delete_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_Get_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_Get_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_ListBySubscription_MaximumSet_Gen.json │ │ │ │ ├── VmmServers_ListBySubscription_MinimumSet_Gen.json │ │ │ │ ├── VmmServers_Update_MaximumSet_Gen.json │ │ │ │ └── VmmServers_Update_MinimumSet_Gen.json │ │ ├── main.tsp │ │ ├── models.tsp │ │ └── tspconfig.yaml │ ├── ServiceFabricManagedClusters.Management.brown │ │ ├── ApplicationResource.tsp │ │ ├── ApplicationTypeResource.tsp │ │ ├── ApplicationTypeVersionResource.tsp │ │ ├── ManagedCluster.tsp │ │ ├── ManagedClusterCodeVersionResult.tsp │ │ ├── ManagedVMSize.tsp │ │ ├── NodeType.tsp │ │ ├── Operations.tsp │ │ ├── ServiceResource.tsp │ │ ├── back-compat.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.ServiceFabricManagedClusters.csproj │ │ │ ├── Az.ServiceFabricManagedClusters.nuspec │ │ │ ├── Az.ServiceFabricManagedClusters.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.ServiceFabricManagedClusters.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── AddRemoveIncrementalNamedPartitionScalingMechanism.PowerShell.cs │ │ │ │ │ │ ├── AddRemoveIncrementalNamedPartitionScalingMechanism.TypeConverter.cs │ │ │ │ │ │ ├── AddRemoveIncrementalNamedPartitionScalingMechanism.cs │ │ │ │ │ │ ├── AddRemoveIncrementalNamedPartitionScalingMechanism.json.cs │ │ │ │ │ │ ├── AdditionalNetworkInterfaceConfiguration.PowerShell.cs │ │ │ │ │ │ ├── AdditionalNetworkInterfaceConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── AdditionalNetworkInterfaceConfiguration.cs │ │ │ │ │ │ ├── AdditionalNetworkInterfaceConfiguration.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApplicationHealthPolicy.PowerShell.cs │ │ │ │ │ │ ├── ApplicationHealthPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationHealthPolicy.cs │ │ │ │ │ │ ├── ApplicationHealthPolicy.json.cs │ │ │ │ │ │ ├── ApplicationHealthPolicyServiceTypeHealthPolicyMap.PowerShell.cs │ │ │ │ │ │ ├── ApplicationHealthPolicyServiceTypeHealthPolicyMap.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationHealthPolicyServiceTypeHealthPolicyMap.cs │ │ │ │ │ │ ├── ApplicationHealthPolicyServiceTypeHealthPolicyMap.dictionary.cs │ │ │ │ │ │ ├── ApplicationHealthPolicyServiceTypeHealthPolicyMap.json.cs │ │ │ │ │ │ ├── ApplicationResource.PowerShell.cs │ │ │ │ │ │ ├── ApplicationResource.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationResource.cs │ │ │ │ │ │ ├── ApplicationResource.json.cs │ │ │ │ │ │ ├── ApplicationResourceList.PowerShell.cs │ │ │ │ │ │ ├── ApplicationResourceList.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationResourceList.cs │ │ │ │ │ │ ├── ApplicationResourceList.json.cs │ │ │ │ │ │ ├── ApplicationResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── ApplicationResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationResourceProperties.cs │ │ │ │ │ │ ├── ApplicationResourceProperties.json.cs │ │ │ │ │ │ ├── ApplicationResourcePropertiesParameters.PowerShell.cs │ │ │ │ │ │ ├── ApplicationResourcePropertiesParameters.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationResourcePropertiesParameters.cs │ │ │ │ │ │ ├── ApplicationResourcePropertiesParameters.dictionary.cs │ │ │ │ │ │ ├── ApplicationResourcePropertiesParameters.json.cs │ │ │ │ │ │ ├── ApplicationResourceTags.PowerShell.cs │ │ │ │ │ │ ├── ApplicationResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationResourceTags.cs │ │ │ │ │ │ ├── ApplicationResourceTags.dictionary.cs │ │ │ │ │ │ ├── ApplicationResourceTags.json.cs │ │ │ │ │ │ ├── ApplicationTypeResource.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeResource.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeResource.cs │ │ │ │ │ │ ├── ApplicationTypeResource.json.cs │ │ │ │ │ │ ├── ApplicationTypeResourceList.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeResourceList.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeResourceList.cs │ │ │ │ │ │ ├── ApplicationTypeResourceList.json.cs │ │ │ │ │ │ ├── ApplicationTypeResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeResourceProperties.cs │ │ │ │ │ │ ├── ApplicationTypeResourceProperties.json.cs │ │ │ │ │ │ ├── ApplicationTypeResourceTags.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeResourceTags.cs │ │ │ │ │ │ ├── ApplicationTypeResourceTags.dictionary.cs │ │ │ │ │ │ ├── ApplicationTypeResourceTags.json.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParameters.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParameters.json.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParametersTags.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ApplicationTypeUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResource.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResource.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResource.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResource.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceList.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceList.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceList.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceList.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceProperties.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceProperties.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceTags.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceTags.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceTags.dictionary.cs │ │ │ │ │ │ ├── ApplicationTypeVersionResourceTags.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParameters.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParameters.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParametersTags.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ApplicationTypeVersionUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ApplicationTypeVersionsCleanupPolicy.PowerShell.cs │ │ │ │ │ │ ├── ApplicationTypeVersionsCleanupPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationTypeVersionsCleanupPolicy.cs │ │ │ │ │ │ ├── ApplicationTypeVersionsCleanupPolicy.json.cs │ │ │ │ │ │ ├── ApplicationUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ApplicationUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationUpdateParameters.cs │ │ │ │ │ │ ├── ApplicationUpdateParameters.json.cs │ │ │ │ │ │ ├── ApplicationUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ApplicationUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationUpdateParametersTags.cs │ │ │ │ │ │ ├── ApplicationUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ApplicationUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ApplicationUpgradePolicy.PowerShell.cs │ │ │ │ │ │ ├── ApplicationUpgradePolicy.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationUpgradePolicy.cs │ │ │ │ │ │ ├── ApplicationUpgradePolicy.json.cs │ │ │ │ │ │ ├── ApplicationUserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── ApplicationUserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationUserAssignedIdentity.cs │ │ │ │ │ │ ├── ApplicationUserAssignedIdentity.json.cs │ │ │ │ │ │ ├── AvailableOperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── AvailableOperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── AvailableOperationDisplay.cs │ │ │ │ │ │ ├── AvailableOperationDisplay.json.cs │ │ │ │ │ │ ├── AveragePartitionLoadScalingTrigger.PowerShell.cs │ │ │ │ │ │ ├── AveragePartitionLoadScalingTrigger.TypeConverter.cs │ │ │ │ │ │ ├── AveragePartitionLoadScalingTrigger.cs │ │ │ │ │ │ ├── AveragePartitionLoadScalingTrigger.json.cs │ │ │ │ │ │ ├── AverageServiceLoadScalingTrigger.PowerShell.cs │ │ │ │ │ │ ├── AverageServiceLoadScalingTrigger.TypeConverter.cs │ │ │ │ │ │ ├── AverageServiceLoadScalingTrigger.cs │ │ │ │ │ │ ├── AverageServiceLoadScalingTrigger.json.cs │ │ │ │ │ │ ├── AzureActiveDirectory.PowerShell.cs │ │ │ │ │ │ ├── AzureActiveDirectory.TypeConverter.cs │ │ │ │ │ │ ├── AzureActiveDirectory.cs │ │ │ │ │ │ ├── AzureActiveDirectory.json.cs │ │ │ │ │ │ ├── ClientCertificate.PowerShell.cs │ │ │ │ │ │ ├── ClientCertificate.TypeConverter.cs │ │ │ │ │ │ ├── ClientCertificate.cs │ │ │ │ │ │ ├── ClientCertificate.json.cs │ │ │ │ │ │ ├── ClusterHealthPolicy.PowerShell.cs │ │ │ │ │ │ ├── ClusterHealthPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ClusterHealthPolicy.cs │ │ │ │ │ │ ├── ClusterHealthPolicy.json.cs │ │ │ │ │ │ ├── ClusterMonitoringPolicy.PowerShell.cs │ │ │ │ │ │ ├── ClusterMonitoringPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ClusterMonitoringPolicy.cs │ │ │ │ │ │ ├── ClusterMonitoringPolicy.json.cs │ │ │ │ │ │ ├── ClusterUpgradeDeltaHealthPolicy.PowerShell.cs │ │ │ │ │ │ ├── ClusterUpgradeDeltaHealthPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ClusterUpgradeDeltaHealthPolicy.cs │ │ │ │ │ │ ├── ClusterUpgradeDeltaHealthPolicy.json.cs │ │ │ │ │ │ ├── ClusterUpgradePolicy.PowerShell.cs │ │ │ │ │ │ ├── ClusterUpgradePolicy.TypeConverter.cs │ │ │ │ │ │ ├── ClusterUpgradePolicy.cs │ │ │ │ │ │ ├── ClusterUpgradePolicy.json.cs │ │ │ │ │ │ ├── EndpointRangeDescription.PowerShell.cs │ │ │ │ │ │ ├── EndpointRangeDescription.TypeConverter.cs │ │ │ │ │ │ ├── EndpointRangeDescription.cs │ │ │ │ │ │ ├── EndpointRangeDescription.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorModelError.PowerShell.cs │ │ │ │ │ │ ├── ErrorModelError.TypeConverter.cs │ │ │ │ │ │ ├── ErrorModelError.cs │ │ │ │ │ │ ├── ErrorModelError.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── FaultSimulation.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulation.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulation.cs │ │ │ │ │ │ ├── FaultSimulation.json.cs │ │ │ │ │ │ ├── FaultSimulationConstraints.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulationConstraints.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulationConstraints.cs │ │ │ │ │ │ ├── FaultSimulationConstraints.json.cs │ │ │ │ │ │ ├── FaultSimulationContent.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulationContent.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulationContent.cs │ │ │ │ │ │ ├── FaultSimulationContent.json.cs │ │ │ │ │ │ ├── FaultSimulationContentWrapper.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulationContentWrapper.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulationContentWrapper.cs │ │ │ │ │ │ ├── FaultSimulationContentWrapper.json.cs │ │ │ │ │ │ ├── FaultSimulationDetails.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulationDetails.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulationDetails.cs │ │ │ │ │ │ ├── FaultSimulationDetails.json.cs │ │ │ │ │ │ ├── FaultSimulationIdContent.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulationIdContent.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulationIdContent.cs │ │ │ │ │ │ ├── FaultSimulationIdContent.json.cs │ │ │ │ │ │ ├── FaultSimulationListResult.PowerShell.cs │ │ │ │ │ │ ├── FaultSimulationListResult.TypeConverter.cs │ │ │ │ │ │ ├── FaultSimulationListResult.cs │ │ │ │ │ │ ├── FaultSimulationListResult.json.cs │ │ │ │ │ │ ├── FrontendConfiguration.PowerShell.cs │ │ │ │ │ │ ├── FrontendConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── FrontendConfiguration.cs │ │ │ │ │ │ ├── FrontendConfiguration.json.cs │ │ │ │ │ │ ├── IPConfiguration.PowerShell.cs │ │ │ │ │ │ ├── IPConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── IPConfiguration.cs │ │ │ │ │ │ ├── IPConfiguration.json.cs │ │ │ │ │ │ ├── IPTag.PowerShell.cs │ │ │ │ │ │ ├── IPTag.TypeConverter.cs │ │ │ │ │ │ ├── IPTag.cs │ │ │ │ │ │ ├── IPTag.json.cs │ │ │ │ │ │ ├── LoadBalancingRule.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancingRule.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancingRule.cs │ │ │ │ │ │ ├── LoadBalancingRule.json.cs │ │ │ │ │ │ ├── LongRunningOperationResult.PowerShell.cs │ │ │ │ │ │ ├── LongRunningOperationResult.TypeConverter.cs │ │ │ │ │ │ ├── LongRunningOperationResult.cs │ │ │ │ │ │ ├── LongRunningOperationResult.json.cs │ │ │ │ │ │ ├── ManagedAzResiliencyStatus.PowerShell.cs │ │ │ │ │ │ ├── ManagedAzResiliencyStatus.TypeConverter.cs │ │ │ │ │ │ ├── ManagedAzResiliencyStatus.cs │ │ │ │ │ │ ├── ManagedAzResiliencyStatus.json.cs │ │ │ │ │ │ ├── ManagedCluster.PowerShell.cs │ │ │ │ │ │ ├── ManagedCluster.TypeConverter.cs │ │ │ │ │ │ ├── ManagedCluster.cs │ │ │ │ │ │ ├── ManagedCluster.json.cs │ │ │ │ │ │ ├── ManagedClusterCodeVersionResult.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterCodeVersionResult.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterCodeVersionResult.cs │ │ │ │ │ │ ├── ManagedClusterCodeVersionResult.json.cs │ │ │ │ │ │ ├── ManagedClusterListResult.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterListResult.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterListResult.cs │ │ │ │ │ │ ├── ManagedClusterListResult.json.cs │ │ │ │ │ │ ├── ManagedClusterProperties.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterProperties.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterProperties.cs │ │ │ │ │ │ ├── ManagedClusterProperties.json.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParameters.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParameters.json.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParametersTags.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ManagedClusterUpdateParametersTags.json.cs │ │ │ │ │ │ ├── ManagedClusterVersionDetails.PowerShell.cs │ │ │ │ │ │ ├── ManagedClusterVersionDetails.TypeConverter.cs │ │ │ │ │ │ ├── ManagedClusterVersionDetails.cs │ │ │ │ │ │ ├── ManagedClusterVersionDetails.json.cs │ │ │ │ │ │ ├── ManagedIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedIdentity.cs │ │ │ │ │ │ ├── ManagedIdentity.json.cs │ │ │ │ │ │ ├── ManagedIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── ManagedMaintenanceWindowStatus.PowerShell.cs │ │ │ │ │ │ ├── ManagedMaintenanceWindowStatus.TypeConverter.cs │ │ │ │ │ │ ├── ManagedMaintenanceWindowStatus.cs │ │ │ │ │ │ ├── ManagedMaintenanceWindowStatus.json.cs │ │ │ │ │ │ ├── ManagedVMSize.PowerShell.cs │ │ │ │ │ │ ├── ManagedVMSize.TypeConverter.cs │ │ │ │ │ │ ├── ManagedVMSize.cs │ │ │ │ │ │ ├── ManagedVMSize.json.cs │ │ │ │ │ │ ├── ManagedVMSizesResult.PowerShell.cs │ │ │ │ │ │ ├── ManagedVMSizesResult.TypeConverter.cs │ │ │ │ │ │ ├── ManagedVMSizesResult.cs │ │ │ │ │ │ ├── ManagedVMSizesResult.json.cs │ │ │ │ │ │ ├── NamedPartitionScheme.PowerShell.cs │ │ │ │ │ │ ├── NamedPartitionScheme.TypeConverter.cs │ │ │ │ │ │ ├── NamedPartitionScheme.cs │ │ │ │ │ │ ├── NamedPartitionScheme.json.cs │ │ │ │ │ │ ├── NetworkSecurityRule.PowerShell.cs │ │ │ │ │ │ ├── NetworkSecurityRule.TypeConverter.cs │ │ │ │ │ │ ├── NetworkSecurityRule.cs │ │ │ │ │ │ ├── NetworkSecurityRule.json.cs │ │ │ │ │ │ ├── NodeType.PowerShell.cs │ │ │ │ │ │ ├── NodeType.TypeConverter.cs │ │ │ │ │ │ ├── NodeType.cs │ │ │ │ │ │ ├── NodeType.json.cs │ │ │ │ │ │ ├── NodeTypeActionParameters.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeActionParameters.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeActionParameters.cs │ │ │ │ │ │ ├── NodeTypeActionParameters.json.cs │ │ │ │ │ │ ├── NodeTypeAvailableSku.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeAvailableSku.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeAvailableSku.cs │ │ │ │ │ │ ├── NodeTypeAvailableSku.json.cs │ │ │ │ │ │ ├── NodeTypeFaultSimulation.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeFaultSimulation.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeFaultSimulation.cs │ │ │ │ │ │ ├── NodeTypeFaultSimulation.json.cs │ │ │ │ │ │ ├── NodeTypeListResult.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeListResult.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeListResult.cs │ │ │ │ │ │ ├── NodeTypeListResult.json.cs │ │ │ │ │ │ ├── NodeTypeListSkuResult.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeListSkuResult.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeListSkuResult.cs │ │ │ │ │ │ ├── NodeTypeListSkuResult.json.cs │ │ │ │ │ │ ├── NodeTypeNatConfig.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeNatConfig.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeNatConfig.cs │ │ │ │ │ │ ├── NodeTypeNatConfig.json.cs │ │ │ │ │ │ ├── NodeTypeProperties.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeProperties.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeProperties.cs │ │ │ │ │ │ ├── NodeTypeProperties.json.cs │ │ │ │ │ │ ├── NodeTypePropertiesCapacities.PowerShell.cs │ │ │ │ │ │ ├── NodeTypePropertiesCapacities.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypePropertiesCapacities.cs │ │ │ │ │ │ ├── NodeTypePropertiesCapacities.dictionary.cs │ │ │ │ │ │ ├── NodeTypePropertiesCapacities.json.cs │ │ │ │ │ │ ├── NodeTypePropertiesPlacementProperties.PowerShell.cs │ │ │ │ │ │ ├── NodeTypePropertiesPlacementProperties.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypePropertiesPlacementProperties.cs │ │ │ │ │ │ ├── NodeTypePropertiesPlacementProperties.dictionary.cs │ │ │ │ │ │ ├── NodeTypePropertiesPlacementProperties.json.cs │ │ │ │ │ │ ├── NodeTypeSku.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeSku.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeSku.cs │ │ │ │ │ │ ├── NodeTypeSku.json.cs │ │ │ │ │ │ ├── NodeTypeSkuCapacity.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeSkuCapacity.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeSkuCapacity.cs │ │ │ │ │ │ ├── NodeTypeSkuCapacity.json.cs │ │ │ │ │ │ ├── NodeTypeSupportedSku.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeSupportedSku.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeSupportedSku.cs │ │ │ │ │ │ ├── NodeTypeSupportedSku.json.cs │ │ │ │ │ │ ├── NodeTypeTags.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeTags.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeTags.cs │ │ │ │ │ │ ├── NodeTypeTags.dictionary.cs │ │ │ │ │ │ ├── NodeTypeTags.json.cs │ │ │ │ │ │ ├── NodeTypeUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeUpdateParameters.cs │ │ │ │ │ │ ├── NodeTypeUpdateParameters.json.cs │ │ │ │ │ │ ├── NodeTypeUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── NodeTypeUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── NodeTypeUpdateParametersTags.cs │ │ │ │ │ │ ├── NodeTypeUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── NodeTypeUpdateParametersTags.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationResult.PowerShell.cs │ │ │ │ │ │ ├── OperationResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationResult.cs │ │ │ │ │ │ ├── OperationResult.json.cs │ │ │ │ │ │ ├── Partition.PowerShell.cs │ │ │ │ │ │ ├── Partition.TypeConverter.cs │ │ │ │ │ │ ├── Partition.cs │ │ │ │ │ │ ├── Partition.json.cs │ │ │ │ │ │ ├── PartitionInstanceCountScaleMechanism.PowerShell.cs │ │ │ │ │ │ ├── PartitionInstanceCountScaleMechanism.TypeConverter.cs │ │ │ │ │ │ ├── PartitionInstanceCountScaleMechanism.cs │ │ │ │ │ │ ├── PartitionInstanceCountScaleMechanism.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── PublicIPAddressConfiguration.PowerShell.cs │ │ │ │ │ │ ├── PublicIPAddressConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── PublicIPAddressConfiguration.cs │ │ │ │ │ │ ├── PublicIPAddressConfiguration.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── ResourceAzStatus.PowerShell.cs │ │ │ │ │ │ ├── ResourceAzStatus.TypeConverter.cs │ │ │ │ │ │ ├── ResourceAzStatus.cs │ │ │ │ │ │ ├── ResourceAzStatus.json.cs │ │ │ │ │ │ ├── RollingUpgradeMonitoringPolicy.PowerShell.cs │ │ │ │ │ │ ├── RollingUpgradeMonitoringPolicy.TypeConverter.cs │ │ │ │ │ │ ├── RollingUpgradeMonitoringPolicy.cs │ │ │ │ │ │ ├── RollingUpgradeMonitoringPolicy.json.cs │ │ │ │ │ │ ├── RuntimeResumeApplicationUpgradeParameters.PowerShell.cs │ │ │ │ │ │ ├── RuntimeResumeApplicationUpgradeParameters.TypeConverter.cs │ │ │ │ │ │ ├── RuntimeResumeApplicationUpgradeParameters.cs │ │ │ │ │ │ ├── RuntimeResumeApplicationUpgradeParameters.json.cs │ │ │ │ │ │ ├── ScalingMechanism.PowerShell.cs │ │ │ │ │ │ ├── ScalingMechanism.TypeConverter.cs │ │ │ │ │ │ ├── ScalingMechanism.cs │ │ │ │ │ │ ├── ScalingMechanism.json.cs │ │ │ │ │ │ ├── ScalingPolicy.PowerShell.cs │ │ │ │ │ │ ├── ScalingPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ScalingPolicy.cs │ │ │ │ │ │ ├── ScalingPolicy.json.cs │ │ │ │ │ │ ├── ScalingTrigger.PowerShell.cs │ │ │ │ │ │ ├── ScalingTrigger.TypeConverter.cs │ │ │ │ │ │ ├── ScalingTrigger.cs │ │ │ │ │ │ ├── ScalingTrigger.json.cs │ │ │ │ │ │ ├── ServiceCorrelation.PowerShell.cs │ │ │ │ │ │ ├── ServiceCorrelation.TypeConverter.cs │ │ │ │ │ │ ├── ServiceCorrelation.cs │ │ │ │ │ │ ├── ServiceCorrelation.json.cs │ │ │ │ │ │ ├── ServiceEndpoint.PowerShell.cs │ │ │ │ │ │ ├── ServiceEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── ServiceEndpoint.cs │ │ │ │ │ │ ├── ServiceEndpoint.json.cs │ │ │ │ │ │ ├── ServiceFabricManagedClustersIdentity.PowerShell.cs │ │ │ │ │ │ ├── ServiceFabricManagedClustersIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ServiceFabricManagedClustersIdentity.cs │ │ │ │ │ │ ├── ServiceFabricManagedClustersIdentity.json.cs │ │ │ │ │ │ ├── ServiceLoadMetric.PowerShell.cs │ │ │ │ │ │ ├── ServiceLoadMetric.TypeConverter.cs │ │ │ │ │ │ ├── ServiceLoadMetric.cs │ │ │ │ │ │ ├── ServiceLoadMetric.json.cs │ │ │ │ │ │ ├── ServicePlacementInvalidDomainPolicy.PowerShell.cs │ │ │ │ │ │ ├── ServicePlacementInvalidDomainPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServicePlacementInvalidDomainPolicy.cs │ │ │ │ │ │ ├── ServicePlacementInvalidDomainPolicy.json.cs │ │ │ │ │ │ ├── ServicePlacementNonPartiallyPlaceServicePolicy.PowerShell.cs │ │ │ │ │ │ ├── ServicePlacementNonPartiallyPlaceServicePolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServicePlacementNonPartiallyPlaceServicePolicy.cs │ │ │ │ │ │ ├── ServicePlacementNonPartiallyPlaceServicePolicy.json.cs │ │ │ │ │ │ ├── ServicePlacementPolicy.PowerShell.cs │ │ │ │ │ │ ├── ServicePlacementPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServicePlacementPolicy.cs │ │ │ │ │ │ ├── ServicePlacementPolicy.json.cs │ │ │ │ │ │ ├── ServicePlacementPreferPrimaryDomainPolicy.PowerShell.cs │ │ │ │ │ │ ├── ServicePlacementPreferPrimaryDomainPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServicePlacementPreferPrimaryDomainPolicy.cs │ │ │ │ │ │ ├── ServicePlacementPreferPrimaryDomainPolicy.json.cs │ │ │ │ │ │ ├── ServicePlacementRequireDomainDistributionPolicy.PowerShell.cs │ │ │ │ │ │ ├── ServicePlacementRequireDomainDistributionPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServicePlacementRequireDomainDistributionPolicy.cs │ │ │ │ │ │ ├── ServicePlacementRequireDomainDistributionPolicy.json.cs │ │ │ │ │ │ ├── ServicePlacementRequiredDomainPolicy.PowerShell.cs │ │ │ │ │ │ ├── ServicePlacementRequiredDomainPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServicePlacementRequiredDomainPolicy.cs │ │ │ │ │ │ ├── ServicePlacementRequiredDomainPolicy.json.cs │ │ │ │ │ │ ├── ServiceResource.PowerShell.cs │ │ │ │ │ │ ├── ServiceResource.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResource.cs │ │ │ │ │ │ ├── ServiceResource.json.cs │ │ │ │ │ │ ├── ServiceResourceList.PowerShell.cs │ │ │ │ │ │ ├── ServiceResourceList.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResourceList.cs │ │ │ │ │ │ ├── ServiceResourceList.json.cs │ │ │ │ │ │ ├── ServiceResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── ServiceResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResourceProperties.cs │ │ │ │ │ │ ├── ServiceResourceProperties.json.cs │ │ │ │ │ │ ├── ServiceResourcePropertiesBase.PowerShell.cs │ │ │ │ │ │ ├── ServiceResourcePropertiesBase.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResourcePropertiesBase.cs │ │ │ │ │ │ ├── ServiceResourcePropertiesBase.json.cs │ │ │ │ │ │ ├── ServiceResourceTags.PowerShell.cs │ │ │ │ │ │ ├── ServiceResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── ServiceResourceTags.cs │ │ │ │ │ │ ├── ServiceResourceTags.dictionary.cs │ │ │ │ │ │ ├── ServiceResourceTags.json.cs │ │ │ │ │ │ ├── ServiceTypeHealthPolicy.PowerShell.cs │ │ │ │ │ │ ├── ServiceTypeHealthPolicy.TypeConverter.cs │ │ │ │ │ │ ├── ServiceTypeHealthPolicy.cs │ │ │ │ │ │ ├── ServiceTypeHealthPolicy.json.cs │ │ │ │ │ │ ├── ServiceUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ServiceUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ServiceUpdateParameters.cs │ │ │ │ │ │ ├── ServiceUpdateParameters.json.cs │ │ │ │ │ │ ├── ServiceUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── ServiceUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── ServiceUpdateParametersTags.cs │ │ │ │ │ │ ├── ServiceUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── ServiceUpdateParametersTags.json.cs │ │ │ │ │ │ ├── SettingsParameterDescription.PowerShell.cs │ │ │ │ │ │ ├── SettingsParameterDescription.TypeConverter.cs │ │ │ │ │ │ ├── SettingsParameterDescription.cs │ │ │ │ │ │ ├── SettingsParameterDescription.json.cs │ │ │ │ │ │ ├── SettingsSectionDescription.PowerShell.cs │ │ │ │ │ │ ├── SettingsSectionDescription.TypeConverter.cs │ │ │ │ │ │ ├── SettingsSectionDescription.cs │ │ │ │ │ │ ├── SettingsSectionDescription.json.cs │ │ │ │ │ │ ├── SingletonPartitionScheme.PowerShell.cs │ │ │ │ │ │ ├── SingletonPartitionScheme.TypeConverter.cs │ │ │ │ │ │ ├── SingletonPartitionScheme.cs │ │ │ │ │ │ ├── SingletonPartitionScheme.json.cs │ │ │ │ │ │ ├── Sku.PowerShell.cs │ │ │ │ │ │ ├── Sku.TypeConverter.cs │ │ │ │ │ │ ├── Sku.cs │ │ │ │ │ │ ├── Sku.json.cs │ │ │ │ │ │ ├── StatefulServiceProperties.PowerShell.cs │ │ │ │ │ │ ├── StatefulServiceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StatefulServiceProperties.cs │ │ │ │ │ │ ├── StatefulServiceProperties.json.cs │ │ │ │ │ │ ├── StatelessServiceProperties.PowerShell.cs │ │ │ │ │ │ ├── StatelessServiceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StatelessServiceProperties.cs │ │ │ │ │ │ ├── StatelessServiceProperties.json.cs │ │ │ │ │ │ ├── SubResource.PowerShell.cs │ │ │ │ │ │ ├── SubResource.TypeConverter.cs │ │ │ │ │ │ ├── SubResource.cs │ │ │ │ │ │ ├── SubResource.json.cs │ │ │ │ │ │ ├── Subnet.PowerShell.cs │ │ │ │ │ │ ├── Subnet.TypeConverter.cs │ │ │ │ │ │ ├── Subnet.cs │ │ │ │ │ │ ├── Subnet.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UniformInt64RangePartitionScheme.PowerShell.cs │ │ │ │ │ │ ├── UniformInt64RangePartitionScheme.TypeConverter.cs │ │ │ │ │ │ ├── UniformInt64RangePartitionScheme.cs │ │ │ │ │ │ ├── UniformInt64RangePartitionScheme.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VMApplication.PowerShell.cs │ │ │ │ │ │ ├── VMApplication.TypeConverter.cs │ │ │ │ │ │ ├── VMApplication.cs │ │ │ │ │ │ ├── VMApplication.json.cs │ │ │ │ │ │ ├── VMImagePlan.PowerShell.cs │ │ │ │ │ │ ├── VMImagePlan.TypeConverter.cs │ │ │ │ │ │ ├── VMImagePlan.cs │ │ │ │ │ │ ├── VMImagePlan.json.cs │ │ │ │ │ │ ├── VMManagedIdentity.PowerShell.cs │ │ │ │ │ │ ├── VMManagedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── VMManagedIdentity.cs │ │ │ │ │ │ ├── VMManagedIdentity.json.cs │ │ │ │ │ │ ├── VMSize.PowerShell.cs │ │ │ │ │ │ ├── VMSize.TypeConverter.cs │ │ │ │ │ │ ├── VMSize.cs │ │ │ │ │ │ ├── VMSize.json.cs │ │ │ │ │ │ ├── VaultCertificate.PowerShell.cs │ │ │ │ │ │ ├── VaultCertificate.TypeConverter.cs │ │ │ │ │ │ ├── VaultCertificate.cs │ │ │ │ │ │ ├── VaultCertificate.json.cs │ │ │ │ │ │ ├── VaultSecretGroup.PowerShell.cs │ │ │ │ │ │ ├── VaultSecretGroup.TypeConverter.cs │ │ │ │ │ │ ├── VaultSecretGroup.cs │ │ │ │ │ │ ├── VaultSecretGroup.json.cs │ │ │ │ │ │ ├── VmssDataDisk.PowerShell.cs │ │ │ │ │ │ ├── VmssDataDisk.TypeConverter.cs │ │ │ │ │ │ ├── VmssDataDisk.cs │ │ │ │ │ │ ├── VmssDataDisk.json.cs │ │ │ │ │ │ ├── VmssExtension.PowerShell.cs │ │ │ │ │ │ ├── VmssExtension.TypeConverter.cs │ │ │ │ │ │ ├── VmssExtension.cs │ │ │ │ │ │ ├── VmssExtension.json.cs │ │ │ │ │ │ ├── VmssExtensionProperties.PowerShell.cs │ │ │ │ │ │ ├── VmssExtensionProperties.TypeConverter.cs │ │ │ │ │ │ ├── VmssExtensionProperties.cs │ │ │ │ │ │ ├── VmssExtensionProperties.json.cs │ │ │ │ │ │ ├── ZoneFaultSimulationContent.PowerShell.cs │ │ │ │ │ │ ├── ZoneFaultSimulationContent.TypeConverter.cs │ │ │ │ │ │ ├── ZoneFaultSimulationContent.cs │ │ │ │ │ │ └── ZoneFaultSimulationContent.json.cs │ │ │ │ │ └── ServiceFabricManagedClustersManagementClient.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationTypeVersion_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationTypeVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationTypeVersion_GetViaIdentityApplicationType.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationTypeVersion_GetViaIdentityManagedCluster.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationTypeVersion_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationType_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationType_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationType_GetViaIdentityManagedCluster.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplicationType_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplication_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplication_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplication_GetViaIdentityManagedCluster.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersApplication_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedAzResiliencyStatus_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedAzResiliencyStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_GetExpanded.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_GetViaIdentityExpanded.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_GetViaJsonString.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterFaultSimulation_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_Get1.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_GetViaIdentity1.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_GetViaIdentityLocation1.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedClusterVersion_List1.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedCluster_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedCluster_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedCluster_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedCluster_List1.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedMaintenanceWindowStatus_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedMaintenanceWindowStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedUnsupportedVMSize_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedUnsupportedVMSize_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedUnsupportedVMSize_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersManagedUnsupportedVMSize_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetExpanded.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetViaIdentityExpanded.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetViaIdentityManagedCluster.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetViaJsonFilePath.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_GetViaJsonString.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeFaultSimulation_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeTypeSku_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeType_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeType_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeType_GetViaIdentityManagedCluster.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersNodeType_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperationResult_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperationResult_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperationResult_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperationStatus_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperationStatus_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperationStatus_GetViaIdentityLocation.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersOperation_List.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersService_Get.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersService_GetViaIdentity.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersService_GetViaIdentityApplication.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersService_GetViaIdentityManagedCluster.cs │ │ │ │ │ ├── GetAzServiceFabricManagedClustersService_List.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_Deallocate.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateExpanded.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateViaIdentity.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateViaIdentityManagedCluster.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersDeallocateNodeType_DeallocateViaJsonString.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersManagedApplyMaintenanceWindow_Post.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersManagedApplyMaintenanceWindow_PostViaIdentity.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_Redeploy.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployExpanded.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployViaIdentity.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployViaIdentityManagedCluster.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzServiceFabricManagedClustersRedeployNodeType_RedeployViaJsonString.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplicationTypeVersion_CreateExpanded.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplicationTypeVersion_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplicationTypeVersion_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplicationType_CreateExpanded.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplicationType_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplicationType_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplication_CreateExpanded.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplication_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersApplication_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersManagedCluster_CreateExpanded.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersManagedCluster_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersManagedCluster_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersNodeType_CreateExpanded.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersNodeType_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersNodeType_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersService_CreateExpanded.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersService_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzServiceFabricManagedClustersService_CreateViaJsonString.cs │ │ │ │ │ ├── ReadAzServiceFabricManagedClustersApplicationUpgrade_Read.cs │ │ │ │ │ ├── ReadAzServiceFabricManagedClustersApplicationUpgrade_ReadViaIdentity.cs │ │ │ │ │ ├── ReadAzServiceFabricManagedClustersApplicationUpgrade_ReadViaIdentityManagedCluster.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationTypeVersion_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationTypeVersion_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationTypeVersion_DeleteViaIdentityApplicationType.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationTypeVersion_DeleteViaIdentityManagedCluster.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationType_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationType_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplicationType_DeleteViaIdentityManagedCluster.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplication_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplication_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersApplication_DeleteViaIdentityManagedCluster.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersManagedCluster_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersManagedCluster_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteExpanded.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteViaIdentityExpanded.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteViaIdentityManagedCluster.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteViaJsonFilePath.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeTypeNode_DeleteViaJsonString.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeType_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeType_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersNodeType_DeleteViaIdentityManagedCluster.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersService_Delete.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersService_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersService_DeleteViaIdentityApplication.cs │ │ │ │ │ ├── RemoveAzServiceFabricManagedClustersService_DeleteViaIdentityManagedCluster.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_Restart.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartExpanded.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartViaIdentity.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartViaIdentityExpanded.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartViaIdentityManagedCluster.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartViaJsonFilePath.cs │ │ │ │ │ ├── RestartAzServiceFabricManagedClustersNodeType_RestartViaJsonString.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_Resume.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeExpanded.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeViaIdentity.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeViaIdentityExpanded.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeViaIdentityManagedCluster.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeViaJsonFilePath.cs │ │ │ │ │ ├── ResumeAzServiceFabricManagedClustersApplicationUpgrade_ResumeViaJsonString.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplicationTypeVersion_UpdateExpanded.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplicationType_UpdateExpanded.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplicationType_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplicationType_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplication_UpdateExpanded.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplication_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersApplication_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersManagedCluster_UpdateExpanded.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersManagedCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersManagedCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersNodeType_UpdateExpanded.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersNodeType_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersNodeType_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersService_UpdateExpanded.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersService_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzServiceFabricManagedClustersService_UpdateViaJsonString.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersApplicationRollback_Start.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersApplicationRollback_StartViaIdentity.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersApplicationRollback_StartViaIdentityManagedCluster.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersManagedClusterFaultSimulation_Start.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersManagedClusterFaultSimulation_StartExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersManagedClusterFaultSimulation_StartViaIdentity.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersManagedClusterFaultSimulation_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersManagedClusterFaultSimulation_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersManagedClusterFaultSimulation_StartViaJsonString.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_Start.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartViaIdentity.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartViaIdentityManagedCluster.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeTypeFaultSimulation_StartViaJsonString.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_Start.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartViaIdentity.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartViaIdentityManagedCluster.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzServiceFabricManagedClustersNodeType_StartViaJsonString.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersManagedClusterFaultSimulation_Stop.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersManagedClusterFaultSimulation_StopExpanded.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersManagedClusterFaultSimulation_StopViaIdentity.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersManagedClusterFaultSimulation_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersManagedClusterFaultSimulation_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersManagedClusterFaultSimulation_StopViaJsonString.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_Stop.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopExpanded.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopViaIdentity.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopViaIdentityManagedCluster.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzServiceFabricManagedClustersNodeTypeFaultSimulation_StopViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationTypeVersion_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaIdentityApplicationTypeExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationTypeVersion_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationType_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationType_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationType_UpdateViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationType_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplicationType_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplication_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplication_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplication_UpdateViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplication_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersApplication_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersManagedCluster_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersManagedCluster_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersManagedCluster_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersManagedCluster_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_Reimage.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageViaIdentity.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageViaIdentityManagedCluster.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_ReimageViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_UpdateViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersNodeType_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersService_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersService_UpdateViaIdentityApplicationExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersService_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersService_UpdateViaIdentityManagedClusterExpanded.cs │ │ │ │ │ ├── UpdateAzServiceFabricManagedClustersService_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzServiceFabricManagedClustersService_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.ServiceFabricManagedClusters.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Sphere.Management │ │ ├── catalog.tsp │ │ ├── certificate.tsp │ │ ├── client.tsp │ │ ├── deployment.tsp │ │ ├── device.tsp │ │ ├── deviceGroup.tsp │ │ ├── image.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── product.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.Sphere.csproj │ │ │ ├── Az.Sphere.nuspec │ │ │ ├── Az.Sphere.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.Sphere.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── Catalog.PowerShell.cs │ │ │ │ │ │ ├── Catalog.TypeConverter.cs │ │ │ │ │ │ ├── Catalog.cs │ │ │ │ │ │ ├── Catalog.json.cs │ │ │ │ │ │ ├── CatalogListResult.PowerShell.cs │ │ │ │ │ │ ├── CatalogListResult.TypeConverter.cs │ │ │ │ │ │ ├── CatalogListResult.cs │ │ │ │ │ │ ├── CatalogListResult.json.cs │ │ │ │ │ │ ├── CatalogProperties.PowerShell.cs │ │ │ │ │ │ ├── CatalogProperties.TypeConverter.cs │ │ │ │ │ │ ├── CatalogProperties.cs │ │ │ │ │ │ ├── CatalogProperties.json.cs │ │ │ │ │ │ ├── CatalogUpdate.PowerShell.cs │ │ │ │ │ │ ├── CatalogUpdate.TypeConverter.cs │ │ │ │ │ │ ├── CatalogUpdate.cs │ │ │ │ │ │ ├── CatalogUpdate.json.cs │ │ │ │ │ │ ├── CatalogUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── CatalogUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── CatalogUpdateTags.cs │ │ │ │ │ │ ├── CatalogUpdateTags.dictionary.cs │ │ │ │ │ │ ├── CatalogUpdateTags.json.cs │ │ │ │ │ │ ├── CatalogsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CatalogsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CatalogsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CatalogsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── CatalogsUploadImageAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── CatalogsUploadImageAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── CatalogsUploadImageAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── CatalogsUploadImageAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── Certificate.PowerShell.cs │ │ │ │ │ │ ├── Certificate.TypeConverter.cs │ │ │ │ │ │ ├── Certificate.cs │ │ │ │ │ │ ├── Certificate.json.cs │ │ │ │ │ │ ├── CertificateChainResponse.PowerShell.cs │ │ │ │ │ │ ├── CertificateChainResponse.TypeConverter.cs │ │ │ │ │ │ ├── CertificateChainResponse.cs │ │ │ │ │ │ ├── CertificateChainResponse.json.cs │ │ │ │ │ │ ├── CertificateListResult.PowerShell.cs │ │ │ │ │ │ ├── CertificateListResult.TypeConverter.cs │ │ │ │ │ │ ├── CertificateListResult.cs │ │ │ │ │ │ ├── CertificateListResult.json.cs │ │ │ │ │ │ ├── CertificateProperties.PowerShell.cs │ │ │ │ │ │ ├── CertificateProperties.TypeConverter.cs │ │ │ │ │ │ ├── CertificateProperties.cs │ │ │ │ │ │ ├── CertificateProperties.json.cs │ │ │ │ │ │ ├── ClaimDevicesRequest.PowerShell.cs │ │ │ │ │ │ ├── ClaimDevicesRequest.TypeConverter.cs │ │ │ │ │ │ ├── ClaimDevicesRequest.cs │ │ │ │ │ │ ├── ClaimDevicesRequest.json.cs │ │ │ │ │ │ ├── CountDevicesResponse.PowerShell.cs │ │ │ │ │ │ ├── CountDevicesResponse.TypeConverter.cs │ │ │ │ │ │ ├── CountDevicesResponse.cs │ │ │ │ │ │ ├── CountDevicesResponse.json.cs │ │ │ │ │ │ ├── CountElementsResponse.PowerShell.cs │ │ │ │ │ │ ├── CountElementsResponse.TypeConverter.cs │ │ │ │ │ │ ├── CountElementsResponse.cs │ │ │ │ │ │ ├── CountElementsResponse.json.cs │ │ │ │ │ │ ├── Deployment.PowerShell.cs │ │ │ │ │ │ ├── Deployment.TypeConverter.cs │ │ │ │ │ │ ├── Deployment.cs │ │ │ │ │ │ ├── Deployment.json.cs │ │ │ │ │ │ ├── DeploymentListResult.PowerShell.cs │ │ │ │ │ │ ├── DeploymentListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentListResult.cs │ │ │ │ │ │ ├── DeploymentListResult.json.cs │ │ │ │ │ │ ├── DeploymentProperties.PowerShell.cs │ │ │ │ │ │ ├── DeploymentProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentProperties.cs │ │ │ │ │ │ ├── DeploymentProperties.json.cs │ │ │ │ │ │ ├── DeploymentsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DeploymentsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DeploymentsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── Device.PowerShell.cs │ │ │ │ │ │ ├── Device.TypeConverter.cs │ │ │ │ │ │ ├── Device.cs │ │ │ │ │ │ ├── Device.json.cs │ │ │ │ │ │ ├── DeviceGroup.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroup.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroup.cs │ │ │ │ │ │ ├── DeviceGroup.json.cs │ │ │ │ │ │ ├── DeviceGroupListResult.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupListResult.cs │ │ │ │ │ │ ├── DeviceGroupListResult.json.cs │ │ │ │ │ │ ├── DeviceGroupProperties.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupProperties.cs │ │ │ │ │ │ ├── DeviceGroupProperties.json.cs │ │ │ │ │ │ ├── DeviceGroupUpdate.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupUpdate.cs │ │ │ │ │ │ ├── DeviceGroupUpdate.json.cs │ │ │ │ │ │ ├── DeviceGroupUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupUpdateProperties.cs │ │ │ │ │ │ ├── DeviceGroupUpdateProperties.json.cs │ │ │ │ │ │ ├── DeviceGroupsClaimDevicesAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupsClaimDevicesAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupsClaimDevicesAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DeviceGroupsClaimDevicesAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DeviceGroupsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DeviceGroupsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DeviceGroupsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DeviceGroupsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DeviceGroupsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DeviceGroupsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DeviceInsight.PowerShell.cs │ │ │ │ │ │ ├── DeviceInsight.TypeConverter.cs │ │ │ │ │ │ ├── DeviceInsight.cs │ │ │ │ │ │ ├── DeviceInsight.json.cs │ │ │ │ │ │ ├── DeviceListResult.PowerShell.cs │ │ │ │ │ │ ├── DeviceListResult.TypeConverter.cs │ │ │ │ │ │ ├── DeviceListResult.cs │ │ │ │ │ │ ├── DeviceListResult.json.cs │ │ │ │ │ │ ├── DeviceProperties.PowerShell.cs │ │ │ │ │ │ ├── DeviceProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeviceProperties.cs │ │ │ │ │ │ ├── DeviceProperties.json.cs │ │ │ │ │ │ ├── DeviceUpdate.PowerShell.cs │ │ │ │ │ │ ├── DeviceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── DeviceUpdate.cs │ │ │ │ │ │ ├── DeviceUpdate.json.cs │ │ │ │ │ │ ├── DeviceUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── DeviceUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── DeviceUpdateProperties.cs │ │ │ │ │ │ ├── DeviceUpdateProperties.json.cs │ │ │ │ │ │ ├── DevicesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DevicesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DevicesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DevicesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DevicesGenerateCapabilityImageAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DevicesGenerateCapabilityImageAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DevicesGenerateCapabilityImageAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DevicesGenerateCapabilityImageAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── DevicesUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── DevicesUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── DevicesUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── DevicesUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── GenerateCapabilityImageRequest.PowerShell.cs │ │ │ │ │ │ ├── GenerateCapabilityImageRequest.TypeConverter.cs │ │ │ │ │ │ ├── GenerateCapabilityImageRequest.cs │ │ │ │ │ │ ├── GenerateCapabilityImageRequest.json.cs │ │ │ │ │ │ ├── Image.PowerShell.cs │ │ │ │ │ │ ├── Image.TypeConverter.cs │ │ │ │ │ │ ├── Image.cs │ │ │ │ │ │ ├── Image.json.cs │ │ │ │ │ │ ├── ImageListResult.PowerShell.cs │ │ │ │ │ │ ├── ImageListResult.TypeConverter.cs │ │ │ │ │ │ ├── ImageListResult.cs │ │ │ │ │ │ ├── ImageListResult.json.cs │ │ │ │ │ │ ├── ImageProperties.PowerShell.cs │ │ │ │ │ │ ├── ImageProperties.TypeConverter.cs │ │ │ │ │ │ ├── ImageProperties.cs │ │ │ │ │ │ ├── ImageProperties.json.cs │ │ │ │ │ │ ├── ImagesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── ImagesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── ImagesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── ImagesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ListDeviceGroupsRequest.PowerShell.cs │ │ │ │ │ │ ├── ListDeviceGroupsRequest.TypeConverter.cs │ │ │ │ │ │ ├── ListDeviceGroupsRequest.cs │ │ │ │ │ │ ├── ListDeviceGroupsRequest.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PagedDeviceInsight.PowerShell.cs │ │ │ │ │ │ ├── PagedDeviceInsight.TypeConverter.cs │ │ │ │ │ │ ├── PagedDeviceInsight.cs │ │ │ │ │ │ ├── PagedDeviceInsight.json.cs │ │ │ │ │ │ ├── Product.PowerShell.cs │ │ │ │ │ │ ├── Product.TypeConverter.cs │ │ │ │ │ │ ├── Product.cs │ │ │ │ │ │ ├── Product.json.cs │ │ │ │ │ │ ├── ProductListResult.PowerShell.cs │ │ │ │ │ │ ├── ProductListResult.TypeConverter.cs │ │ │ │ │ │ ├── ProductListResult.cs │ │ │ │ │ │ ├── ProductListResult.json.cs │ │ │ │ │ │ ├── ProductProperties.PowerShell.cs │ │ │ │ │ │ ├── ProductProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProductProperties.cs │ │ │ │ │ │ ├── ProductProperties.json.cs │ │ │ │ │ │ ├── ProductUpdate.PowerShell.cs │ │ │ │ │ │ ├── ProductUpdate.TypeConverter.cs │ │ │ │ │ │ ├── ProductUpdate.cs │ │ │ │ │ │ ├── ProductUpdate.json.cs │ │ │ │ │ │ ├── ProductUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── ProductUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProductUpdateProperties.cs │ │ │ │ │ │ ├── ProductUpdateProperties.json.cs │ │ │ │ │ │ ├── ProductsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── ProductsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── ProductsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── ProductsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ProductsUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── ProductsUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── ProductsUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── ProductsUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceRequest.PowerShell.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceRequest.TypeConverter.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceRequest.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceRequest.json.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceResponse.PowerShell.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceResponse.TypeConverter.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceResponse.cs │ │ │ │ │ │ ├── ProofOfPossessionNonceResponse.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SignedCapabilityImageResponse.PowerShell.cs │ │ │ │ │ │ ├── SignedCapabilityImageResponse.TypeConverter.cs │ │ │ │ │ │ ├── SignedCapabilityImageResponse.cs │ │ │ │ │ │ ├── SignedCapabilityImageResponse.json.cs │ │ │ │ │ │ ├── SphereIdentity.PowerShell.cs │ │ │ │ │ │ ├── SphereIdentity.TypeConverter.cs │ │ │ │ │ │ ├── SphereIdentity.cs │ │ │ │ │ │ ├── SphereIdentity.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ └── TrackedResourceTags.json.cs │ │ │ │ │ └── Sphere.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzSphereCatalogDeviceGroup_ListExpanded.cs │ │ │ │ │ ├── GetAzSphereCatalogDeviceInsight_List.cs │ │ │ │ │ ├── GetAzSphereCatalogDevice_List.cs │ │ │ │ │ ├── GetAzSphereCatalog_Get.cs │ │ │ │ │ ├── GetAzSphereCatalog_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereCatalog_List.cs │ │ │ │ │ ├── GetAzSphereCatalog_List1.cs │ │ │ │ │ ├── GetAzSphereCertificateCertChain_Retrieve.cs │ │ │ │ │ ├── GetAzSphereCertificateCertChain_RetrieveViaIdentity.cs │ │ │ │ │ ├── GetAzSphereCertificateCertChain_RetrieveViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereCertificateProof_RetrieveExpanded.cs │ │ │ │ │ ├── GetAzSphereCertificateProof_RetrieveViaIdentityCatalogExpanded.cs │ │ │ │ │ ├── GetAzSphereCertificateProof_RetrieveViaIdentityExpanded.cs │ │ │ │ │ ├── GetAzSphereCertificate_Get.cs │ │ │ │ │ ├── GetAzSphereCertificate_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereCertificate_GetViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereCertificate_List.cs │ │ │ │ │ ├── GetAzSphereDeployment_Get.cs │ │ │ │ │ ├── GetAzSphereDeployment_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereDeployment_GetViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereDeployment_GetViaIdentityDeviceGroup.cs │ │ │ │ │ ├── GetAzSphereDeployment_GetViaIdentityProduct.cs │ │ │ │ │ ├── GetAzSphereDeployment_List.cs │ │ │ │ │ ├── GetAzSphereDeviceGroup_Get.cs │ │ │ │ │ ├── GetAzSphereDeviceGroup_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereDeviceGroup_GetViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereDeviceGroup_GetViaIdentityProduct.cs │ │ │ │ │ ├── GetAzSphereDeviceGroup_List.cs │ │ │ │ │ ├── GetAzSphereDevice_Get.cs │ │ │ │ │ ├── GetAzSphereDevice_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereDevice_GetViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereDevice_GetViaIdentityDeviceGroup.cs │ │ │ │ │ ├── GetAzSphereDevice_GetViaIdentityProduct.cs │ │ │ │ │ ├── GetAzSphereDevice_List.cs │ │ │ │ │ ├── GetAzSphereImage_Get.cs │ │ │ │ │ ├── GetAzSphereImage_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereImage_GetViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereImage_List.cs │ │ │ │ │ ├── GetAzSphereOperation_List.cs │ │ │ │ │ ├── GetAzSphereProduct_Get.cs │ │ │ │ │ ├── GetAzSphereProduct_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSphereProduct_GetViaIdentityCatalog.cs │ │ │ │ │ ├── GetAzSphereProduct_List.cs │ │ │ │ │ ├── InvokeAzSphereCountCatalogDevice_CountDevice.cs │ │ │ │ │ ├── InvokeAzSphereCountCatalogDevice_CountDeviceViaIdentity.cs │ │ │ │ │ ├── InvokeAzSphereCountDeviceGroupDevice_CountDevice.cs │ │ │ │ │ ├── InvokeAzSphereCountDeviceGroupDevice_CountDeviceViaIdentity.cs │ │ │ │ │ ├── InvokeAzSphereCountDeviceGroupDevice_CountDeviceViaIdentityCatalog.cs │ │ │ │ │ ├── InvokeAzSphereCountDeviceGroupDevice_CountDeviceViaIdentityProduct.cs │ │ │ │ │ ├── InvokeAzSphereCountProductDevice_CountDevice.cs │ │ │ │ │ ├── InvokeAzSphereCountProductDevice_CountDeviceViaIdentity.cs │ │ │ │ │ ├── InvokeAzSphereCountProductDevice_CountDeviceViaIdentityCatalog.cs │ │ │ │ │ ├── NewAzSphereCatalog_CreateExpanded.cs │ │ │ │ │ ├── NewAzSphereCatalog_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereCatalog_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSphereDeployment_CreateExpanded.cs │ │ │ │ │ ├── NewAzSphereDeployment_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereDeployment_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSphereDeviceCapabilityImage_GenerateExpanded.cs │ │ │ │ │ ├── NewAzSphereDeviceCapabilityImage_GenerateViaIdentityCatalogExpanded.cs │ │ │ │ │ ├── NewAzSphereDeviceCapabilityImage_GenerateViaIdentityDeviceGroupExpanded.cs │ │ │ │ │ ├── NewAzSphereDeviceCapabilityImage_GenerateViaIdentityProductExpanded.cs │ │ │ │ │ ├── NewAzSphereDeviceCapabilityImage_GenerateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereDeviceCapabilityImage_GenerateViaJsonString.cs │ │ │ │ │ ├── NewAzSphereDeviceGroup_CreateExpanded.cs │ │ │ │ │ ├── NewAzSphereDeviceGroup_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereDeviceGroup_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSphereDevice_CreateExpanded.cs │ │ │ │ │ ├── NewAzSphereDevice_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereDevice_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSphereImage_CreateExpanded.cs │ │ │ │ │ ├── NewAzSphereImage_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereImage_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSphereProductDefaultDeviceGroup_Generate.cs │ │ │ │ │ ├── NewAzSphereProductDefaultDeviceGroup_GenerateViaIdentity.cs │ │ │ │ │ ├── NewAzSphereProductDefaultDeviceGroup_GenerateViaIdentityCatalog.cs │ │ │ │ │ ├── NewAzSphereProduct_CreateExpanded.cs │ │ │ │ │ ├── NewAzSphereProduct_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSphereProduct_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzSphereCatalog_Delete.cs │ │ │ │ │ ├── RemoveAzSphereCatalog_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzSphereDeviceGroup_Delete.cs │ │ │ │ │ ├── RemoveAzSphereDeviceGroup_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzSphereDeviceGroup_DeleteViaIdentityCatalog.cs │ │ │ │ │ ├── RemoveAzSphereDeviceGroup_DeleteViaIdentityProduct.cs │ │ │ │ │ ├── RemoveAzSphereProduct_Delete.cs │ │ │ │ │ ├── RemoveAzSphereProduct_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzSphereProduct_DeleteViaIdentityCatalog.cs │ │ │ │ │ ├── SetAzSphereCatalog_UpdateExpanded.cs │ │ │ │ │ ├── SetAzSphereCatalog_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzSphereCatalog_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzSphereDeployment_UpdateExpanded.cs │ │ │ │ │ ├── SetAzSphereDeployment_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzSphereDeployment_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzSphereDeviceGroup_UpdateExpanded.cs │ │ │ │ │ ├── SetAzSphereDeviceGroup_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzSphereDeviceGroup_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzSphereDevice_UpdateExpanded.cs │ │ │ │ │ ├── SetAzSphereDevice_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzSphereDevice_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzSphereImage_UpdateExpanded.cs │ │ │ │ │ ├── SetAzSphereImage_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzSphereImage_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzSphereProduct_UpdateExpanded.cs │ │ │ │ │ ├── SetAzSphereProduct_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzSphereProduct_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSphereCatalog_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSphereCatalog_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSphereCatalog_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzSphereCatalog_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSphereDeviceGroup_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDeviceGroup_UpdateViaIdentityCatalogExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDeviceGroup_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDeviceGroup_UpdateViaIdentityProductExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDeviceGroup_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzSphereDeviceGroup_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateViaIdentityCatalogExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateViaIdentityDeviceGroupExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateViaIdentityProductExpanded.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzSphereDevice_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSphereProduct_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSphereProduct_UpdateViaIdentityCatalogExpanded.cs │ │ │ │ │ ├── UpdateAzSphereProduct_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSphereProduct_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzSphereProduct_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.Sphere.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── StandbyPool.Management │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2023-12-01-preview │ │ │ │ ├── Operations_List.json │ │ │ │ ├── StandbyContainerGroupPools_CreateOrUpdate.json │ │ │ │ ├── StandbyContainerGroupPools_Delete.json │ │ │ │ ├── StandbyContainerGroupPools_Get.json │ │ │ │ ├── StandbyContainerGroupPools_ListByResourceGroup.json │ │ │ │ ├── StandbyContainerGroupPools_ListBySubscription.json │ │ │ │ ├── StandbyContainerGroupPools_Update.json │ │ │ │ ├── StandbyVirtualMachinePools_CreateOrUpdate.json │ │ │ │ ├── StandbyVirtualMachinePools_Delete.json │ │ │ │ ├── StandbyVirtualMachinePools_Get.json │ │ │ │ ├── StandbyVirtualMachinePools_ListByResourceGroup.json │ │ │ │ ├── StandbyVirtualMachinePools_ListBySubscription.json │ │ │ │ ├── StandbyVirtualMachinePools_Update.json │ │ │ │ ├── StandbyVirtualMachines_Get.json │ │ │ │ └── StandbyVirtualMachines_ListByStandbyVirtualMachinePoolResource.json │ │ │ ├── 2024-03-01-preview │ │ │ │ ├── Operations_List.json │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViews_Get.json │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViews_ListByStandbyPool.json │ │ │ │ ├── StandbyContainerGroupPools_CreateOrUpdate.json │ │ │ │ ├── StandbyContainerGroupPools_Delete.json │ │ │ │ ├── StandbyContainerGroupPools_Get.json │ │ │ │ ├── StandbyContainerGroupPools_ListByResourceGroup.json │ │ │ │ ├── StandbyContainerGroupPools_ListBySubscription.json │ │ │ │ ├── StandbyContainerGroupPools_Update.json │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViews_Get.json │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViews_ListByStandbyPool.json │ │ │ │ ├── StandbyVirtualMachinePools_CreateOrUpdate.json │ │ │ │ ├── StandbyVirtualMachinePools_Delete.json │ │ │ │ ├── StandbyVirtualMachinePools_Get.json │ │ │ │ ├── StandbyVirtualMachinePools_ListByResourceGroup.json │ │ │ │ ├── StandbyVirtualMachinePools_ListBySubscription.json │ │ │ │ ├── StandbyVirtualMachinePools_Update.json │ │ │ │ ├── StandbyVirtualMachines_Get.json │ │ │ │ └── StandbyVirtualMachines_ListByStandbyVirtualMachinePoolResource.json │ │ │ └── 2024-03-01 │ │ │ │ ├── Operations_List.json │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViews_Get.json │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViews_ListByStandbyPool.json │ │ │ │ ├── StandbyContainerGroupPools_CreateOrUpdate.json │ │ │ │ ├── StandbyContainerGroupPools_Delete.json │ │ │ │ ├── StandbyContainerGroupPools_Get.json │ │ │ │ ├── StandbyContainerGroupPools_ListByResourceGroup.json │ │ │ │ ├── StandbyContainerGroupPools_ListBySubscription.json │ │ │ │ ├── StandbyContainerGroupPools_Update.json │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViews_Get.json │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViews_ListByStandbyPool.json │ │ │ │ ├── StandbyVirtualMachinePools_CreateOrUpdate.json │ │ │ │ ├── StandbyVirtualMachinePools_Delete.json │ │ │ │ ├── StandbyVirtualMachinePools_Get.json │ │ │ │ ├── StandbyVirtualMachinePools_ListByResourceGroup.json │ │ │ │ ├── StandbyVirtualMachinePools_ListBySubscription.json │ │ │ │ ├── StandbyVirtualMachinePools_Update.json │ │ │ │ ├── StandbyVirtualMachines_Get.json │ │ │ │ └── StandbyVirtualMachines_ListByStandbyVirtualMachinePoolResource.json │ │ ├── main.tsp │ │ ├── sdk-suppressions.yaml │ │ ├── service.tsp │ │ ├── standbyContainerGroupPool.tsp │ │ ├── standbyContainerGroupPoolRuntimeView.tsp │ │ ├── standbyVM.tsp │ │ ├── standbyVMPool.tsp │ │ ├── standbyVirtualMachinePoolRuntimeView.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.StandbyPool.csproj │ │ │ ├── Az.StandbyPool.nuspec │ │ │ ├── Az.StandbyPool.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.StandbyPool.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── MicrosoftStandbyPool.cs │ │ │ │ │ └── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ContainerGroupInstanceCountSummary.PowerShell.cs │ │ │ │ │ │ ├── ContainerGroupInstanceCountSummary.TypeConverter.cs │ │ │ │ │ │ ├── ContainerGroupInstanceCountSummary.cs │ │ │ │ │ │ ├── ContainerGroupInstanceCountSummary.json.cs │ │ │ │ │ │ ├── ContainerGroupProfile.PowerShell.cs │ │ │ │ │ │ ├── ContainerGroupProfile.TypeConverter.cs │ │ │ │ │ │ ├── ContainerGroupProfile.cs │ │ │ │ │ │ ├── ContainerGroupProfile.json.cs │ │ │ │ │ │ ├── ContainerGroupProperties.PowerShell.cs │ │ │ │ │ │ ├── ContainerGroupProperties.TypeConverter.cs │ │ │ │ │ │ ├── ContainerGroupProperties.cs │ │ │ │ │ │ ├── ContainerGroupProperties.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── PoolContainerGroupStateCount.PowerShell.cs │ │ │ │ │ │ ├── PoolContainerGroupStateCount.TypeConverter.cs │ │ │ │ │ │ ├── PoolContainerGroupStateCount.cs │ │ │ │ │ │ ├── PoolContainerGroupStateCount.json.cs │ │ │ │ │ │ ├── PoolStatus.PowerShell.cs │ │ │ │ │ │ ├── PoolStatus.TypeConverter.cs │ │ │ │ │ │ ├── PoolStatus.cs │ │ │ │ │ │ ├── PoolStatus.json.cs │ │ │ │ │ │ ├── PoolVirtualMachineStateCount.PowerShell.cs │ │ │ │ │ │ ├── PoolVirtualMachineStateCount.TypeConverter.cs │ │ │ │ │ │ ├── PoolVirtualMachineStateCount.cs │ │ │ │ │ │ ├── PoolVirtualMachineStateCount.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolElasticityProfile.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolElasticityProfile.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolElasticityProfile.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolElasticityProfile.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolForecastValues.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolForecastValues.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolForecastValues.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolForecastValues.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolPrediction.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolPrediction.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolPrediction.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolPrediction.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResource.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResource.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResource.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResource.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceListResult.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceListResult.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceProperties.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceProperties.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdate.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdate.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateProperties.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateProperties.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateTags.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolResourceUpdateTags.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResource.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResource.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResource.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResource.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceListResult.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceListResult.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceProperties.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolRuntimeViewResourceProperties.json.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── StandbyContainerGroupPoolsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── StandbyPoolIdentity.PowerShell.cs │ │ │ │ │ │ ├── StandbyPoolIdentity.TypeConverter.cs │ │ │ │ │ │ ├── StandbyPoolIdentity.cs │ │ │ │ │ │ ├── StandbyPoolIdentity.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolElasticityProfile.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolElasticityProfile.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolElasticityProfile.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolElasticityProfile.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolForecastValues.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolForecastValues.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolForecastValues.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolForecastValues.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolPrediction.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolPrediction.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolPrediction.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolPrediction.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResource.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResource.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResource.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResource.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceListResult.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceListResult.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceProperties.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceProperties.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdate.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdate.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdate.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdate.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateProperties.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateProperties.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateTags.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateTags.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateTags.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateTags.dictionary.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolResourceUpdateTags.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResource.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResource.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResource.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResource.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceListResult.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceListResult.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceProperties.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolRuntimeViewResourceProperties.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolsDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolsDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolsDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── StandbyVirtualMachinePoolsDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResource.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResource.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResource.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResource.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceListResult.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceListResult.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceListResult.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceListResult.json.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceProperties.PowerShell.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceProperties.TypeConverter.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceProperties.cs │ │ │ │ │ │ ├── StandbyVirtualMachineResourceProperties.json.cs │ │ │ │ │ │ ├── Subnet.PowerShell.cs │ │ │ │ │ │ ├── Subnet.TypeConverter.cs │ │ │ │ │ │ ├── Subnet.cs │ │ │ │ │ │ ├── Subnet.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── VirtualMachineInstanceCountSummary.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineInstanceCountSummary.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineInstanceCountSummary.cs │ │ │ │ │ │ └── VirtualMachineInstanceCountSummary.json.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzStandbyPoolOperation_List.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPoolRuntimeView_Get.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPoolRuntimeView_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPoolRuntimeView_GetViaIdentityStandbyContainerGroupPool.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPoolRuntimeView_List.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPool_Get.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPool_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPool_List.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyContainerGroupPool_List1.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePoolRuntimeView_Get.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePoolRuntimeView_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePoolRuntimeView_GetViaIdentityStandbyVirtualMachinePool.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePoolRuntimeView_List.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePool_Get.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePool_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePool_List.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachinePool_List1.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachine_Get.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachine_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachine_GetViaIdentityStandbyVirtualMachinePool.cs │ │ │ │ │ ├── GetAzStandbyPoolStandbyVirtualMachine_List.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyContainerGroupPool_CreateExpanded.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyContainerGroupPool_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyContainerGroupPool_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyContainerGroupPool_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyVirtualMachinePool_CreateExpanded.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyVirtualMachinePool_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyVirtualMachinePool_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStandbyPoolStandbyVirtualMachinePool_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzStandbyPoolStandbyContainerGroupPool_Delete.cs │ │ │ │ │ ├── RemoveAzStandbyPoolStandbyContainerGroupPool_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzStandbyPoolStandbyVirtualMachinePool_Delete.cs │ │ │ │ │ ├── RemoveAzStandbyPoolStandbyVirtualMachinePool_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzStandbyPoolStandbyContainerGroupPool_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStandbyPoolStandbyContainerGroupPool_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStandbyPoolStandbyContainerGroupPool_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzStandbyPoolStandbyVirtualMachinePool_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStandbyPoolStandbyVirtualMachinePool_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStandbyPoolStandbyVirtualMachinePool_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyContainerGroupPool_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyContainerGroupPool_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyContainerGroupPool_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyContainerGroupPool_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyVirtualMachinePool_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyVirtualMachinePool_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStandbyPoolStandbyVirtualMachinePool_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzStandbyPoolStandbyVirtualMachinePool_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.StandbyPool.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── StorageAction.Management.brown │ │ ├── StorageTask.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── routes.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.StorageAction.csproj │ │ │ ├── Az.StorageAction.nuspec │ │ │ ├── Az.StorageAction.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.StorageAction.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ElseCondition.PowerShell.cs │ │ │ │ │ │ ├── ElseCondition.TypeConverter.cs │ │ │ │ │ │ ├── ElseCondition.cs │ │ │ │ │ │ ├── ElseCondition.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── IfCondition.PowerShell.cs │ │ │ │ │ │ ├── IfCondition.TypeConverter.cs │ │ │ │ │ │ ├── IfCondition.cs │ │ │ │ │ │ ├── IfCondition.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── StorageActionIdentity.PowerShell.cs │ │ │ │ │ │ ├── StorageActionIdentity.TypeConverter.cs │ │ │ │ │ │ ├── StorageActionIdentity.cs │ │ │ │ │ │ ├── StorageActionIdentity.json.cs │ │ │ │ │ │ ├── StorageTask.PowerShell.cs │ │ │ │ │ │ ├── StorageTask.TypeConverter.cs │ │ │ │ │ │ ├── StorageTask.cs │ │ │ │ │ │ ├── StorageTask.json.cs │ │ │ │ │ │ ├── StorageTaskAction.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskAction.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskAction.cs │ │ │ │ │ │ ├── StorageTaskAction.json.cs │ │ │ │ │ │ ├── StorageTaskAssignment.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskAssignment.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskAssignment.cs │ │ │ │ │ │ ├── StorageTaskAssignment.json.cs │ │ │ │ │ │ ├── StorageTaskAssignmentsListResult.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskAssignmentsListResult.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskAssignmentsListResult.cs │ │ │ │ │ │ ├── StorageTaskAssignmentsListResult.json.cs │ │ │ │ │ │ ├── StorageTaskOperation.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskOperation.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskOperation.cs │ │ │ │ │ │ ├── StorageTaskOperation.json.cs │ │ │ │ │ │ ├── StorageTaskOperationParameters.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskOperationParameters.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskOperationParameters.cs │ │ │ │ │ │ ├── StorageTaskOperationParameters.dictionary.cs │ │ │ │ │ │ ├── StorageTaskOperationParameters.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewAction.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewAction.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewAction.cs │ │ │ │ │ │ ├── StorageTaskPreviewAction.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionCondition.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionCondition.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionCondition.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionCondition.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionIfCondition.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionIfCondition.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionIfCondition.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionIfCondition.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionProperties.cs │ │ │ │ │ │ ├── StorageTaskPreviewActionProperties.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewBlobProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewBlobProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewBlobProperties.cs │ │ │ │ │ │ ├── StorageTaskPreviewBlobProperties.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewContainerProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewContainerProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewContainerProperties.cs │ │ │ │ │ │ ├── StorageTaskPreviewContainerProperties.json.cs │ │ │ │ │ │ ├── StorageTaskPreviewKeyValueProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskPreviewKeyValueProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskPreviewKeyValueProperties.cs │ │ │ │ │ │ ├── StorageTaskPreviewKeyValueProperties.json.cs │ │ │ │ │ │ ├── StorageTaskProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskProperties.cs │ │ │ │ │ │ ├── StorageTaskProperties.json.cs │ │ │ │ │ │ ├── StorageTaskReportInstance.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskReportInstance.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskReportInstance.cs │ │ │ │ │ │ ├── StorageTaskReportInstance.json.cs │ │ │ │ │ │ ├── StorageTaskReportProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskReportProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskReportProperties.cs │ │ │ │ │ │ ├── StorageTaskReportProperties.json.cs │ │ │ │ │ │ ├── StorageTaskReportSummary.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskReportSummary.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskReportSummary.cs │ │ │ │ │ │ ├── StorageTaskReportSummary.json.cs │ │ │ │ │ │ ├── StorageTaskUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskUpdateParameters.cs │ │ │ │ │ │ ├── StorageTaskUpdateParameters.json.cs │ │ │ │ │ │ ├── StorageTaskUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskUpdateParametersTags.cs │ │ │ │ │ │ ├── StorageTaskUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── StorageTaskUpdateParametersTags.json.cs │ │ │ │ │ │ ├── StorageTaskUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageTaskUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageTaskUpdateProperties.cs │ │ │ │ │ │ ├── StorageTaskUpdateProperties.json.cs │ │ │ │ │ │ ├── StorageTasksListResult.PowerShell.cs │ │ │ │ │ │ ├── StorageTasksListResult.TypeConverter.cs │ │ │ │ │ │ ├── StorageTasksListResult.cs │ │ │ │ │ │ ├── StorageTasksListResult.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ └── UserAssignedIdentity.json.cs │ │ │ │ │ └── StorageActionsManagementClient.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzStorageActionOperation_List.cs │ │ │ │ │ ├── GetAzStorageActionTaskAssignment_List.cs │ │ │ │ │ ├── GetAzStorageActionTask_Get.cs │ │ │ │ │ ├── GetAzStorageActionTask_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageActionTask_List.cs │ │ │ │ │ ├── GetAzStorageActionTask_List1.cs │ │ │ │ │ ├── GetAzStorageActionTasksReport_List.cs │ │ │ │ │ ├── InvokeAzStorageActionTaskPreviewAction_PreviewExpanded.cs │ │ │ │ │ ├── InvokeAzStorageActionTaskPreviewAction_PreviewViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzStorageActionTaskPreviewAction_PreviewViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzStorageActionTaskPreviewAction_PreviewViaJsonString.cs │ │ │ │ │ ├── NewAzStorageActionTask_CreateExpanded.cs │ │ │ │ │ ├── NewAzStorageActionTask_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStorageActionTask_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzStorageActionTask_Delete.cs │ │ │ │ │ ├── RemoveAzStorageActionTask_DeleteViaIdentity.cs │ │ │ │ │ ├── UpdateAzStorageActionTask_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzStorageActionTask_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.StorageAction.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── StorageMover.Management.brown │ │ ├── Agent.tsp │ │ ├── Endpoint.tsp │ │ ├── JobDefinition.tsp │ │ ├── JobRun.tsp │ │ ├── Project.tsp │ │ ├── StorageMover.tsp │ │ ├── back-compatible.tsp │ │ ├── client.tsp │ │ ├── examples │ │ │ ├── 2024-07-01 │ │ │ │ ├── Agents_CreateOrUpdate_MaximumSet.json │ │ │ │ ├── Agents_CreateOrUpdate_MinimumSet.json │ │ │ │ ├── Agents_CreateOrUpdate_UploadLimitSchedule_Overnight.json │ │ │ │ ├── Agents_Delete.json │ │ │ │ ├── Agents_Get_MaximumSet.json │ │ │ │ ├── Agents_Get_MinimumSet.json │ │ │ │ ├── Agents_List_MaximumSet.json │ │ │ │ ├── Agents_List_MinimumSet.json │ │ │ │ ├── Agents_Update.json │ │ │ │ ├── Endpoints_CreateOrUpdate_AzureStorageBlobContainer.json │ │ │ │ ├── Endpoints_CreateOrUpdate_AzureStorageSmbFileShare.json │ │ │ │ ├── Endpoints_CreateOrUpdate_NfsMount.json │ │ │ │ ├── Endpoints_CreateOrUpdate_SmbMount.json │ │ │ │ ├── Endpoints_Delete.json │ │ │ │ ├── Endpoints_Get_AzureStorageBlobContainer.json │ │ │ │ ├── Endpoints_Get_AzureStorageSmbFileShare.json │ │ │ │ ├── Endpoints_Get_NfsMount.json │ │ │ │ ├── Endpoints_Get_SmbMount.json │ │ │ │ ├── Endpoints_List.json │ │ │ │ ├── Endpoints_Update_AzureStorageBlobContainer.json │ │ │ │ ├── Endpoints_Update_AzureStorageSmbFileShare.json │ │ │ │ ├── Endpoints_Update_NfsMount.json │ │ │ │ ├── Endpoints_Update_SmbMount.json │ │ │ │ ├── JobDefinitions_CreateOrUpdate.json │ │ │ │ ├── JobDefinitions_Delete.json │ │ │ │ ├── JobDefinitions_Get.json │ │ │ │ ├── JobDefinitions_List.json │ │ │ │ ├── JobDefinitions_StartJob.json │ │ │ │ ├── JobDefinitions_StopJob.json │ │ │ │ ├── JobDefinitions_Update.json │ │ │ │ ├── JobRuns_Get.json │ │ │ │ ├── JobRuns_List.json │ │ │ │ ├── Operations_List.json │ │ │ │ ├── Projects_CreateOrUpdate.json │ │ │ │ ├── Projects_Delete.json │ │ │ │ ├── Projects_Get.json │ │ │ │ ├── Projects_List.json │ │ │ │ ├── Projects_Update.json │ │ │ │ ├── StorageMovers_CreateOrUpdate.json │ │ │ │ ├── StorageMovers_Delete.json │ │ │ │ ├── StorageMovers_Get.json │ │ │ │ ├── StorageMovers_List.json │ │ │ │ ├── StorageMovers_ListBySubscription.json │ │ │ │ └── StorageMovers_Update.json │ │ │ └── 2025-07-01 │ │ │ │ ├── Agents_CreateOrUpdate_MaximumSet.json │ │ │ │ ├── Agents_CreateOrUpdate_MinimumSet.json │ │ │ │ ├── Agents_CreateOrUpdate_UploadLimitSchedule_Overnight.json │ │ │ │ ├── Agents_Delete.json │ │ │ │ ├── Agents_Get_MaximumSet.json │ │ │ │ ├── Agents_Get_MinimumSet.json │ │ │ │ ├── Agents_List_MaximumSet.json │ │ │ │ ├── Agents_List_MinimumSet.json │ │ │ │ ├── Agents_Update.json │ │ │ │ ├── Endpoints_CreateOrUpdate_AzureMultiCloudConnector.json │ │ │ │ ├── Endpoints_CreateOrUpdate_AzureStorageBlobContainer.json │ │ │ │ ├── Endpoints_CreateOrUpdate_AzureStorageNfsFileShare.json │ │ │ │ ├── Endpoints_CreateOrUpdate_AzureStorageSmbFileShare.json │ │ │ │ ├── Endpoints_CreateOrUpdate_NfsMount.json │ │ │ │ ├── Endpoints_CreateOrUpdate_SmbMount.json │ │ │ │ ├── Endpoints_Delete.json │ │ │ │ ├── Endpoints_Get_AzureMultiCloudConnector.json │ │ │ │ ├── Endpoints_Get_AzureStorageBlobContainer.json │ │ │ │ ├── Endpoints_Get_AzureStorageNfsFileShare.json │ │ │ │ ├── Endpoints_Get_AzureStorageSmbFileShare.json │ │ │ │ ├── Endpoints_Get_NfsMount.json │ │ │ │ ├── Endpoints_Get_SmbMount.json │ │ │ │ ├── Endpoints_List.json │ │ │ │ ├── Endpoints_Update_AzureMultiCloudConnector.json │ │ │ │ ├── Endpoints_Update_AzureStorageBlobContainer.json │ │ │ │ ├── Endpoints_Update_AzureStorageNfsFileShare.json │ │ │ │ ├── Endpoints_Update_AzureStorageSmbFileShare.json │ │ │ │ ├── Endpoints_Update_NfsMount.json │ │ │ │ ├── Endpoints_Update_SmbMount.json │ │ │ │ ├── JobDefinitions_CreateOrUpdate.json │ │ │ │ ├── JobDefinitions_CreateOrUpdate_CloudToCloud.json │ │ │ │ ├── JobDefinitions_Delete.json │ │ │ │ ├── JobDefinitions_Get.json │ │ │ │ ├── JobDefinitions_List.json │ │ │ │ ├── JobDefinitions_StartJob.json │ │ │ │ ├── JobDefinitions_StopJob.json │ │ │ │ ├── JobDefinitions_Update.json │ │ │ │ ├── JobRuns_Get.json │ │ │ │ ├── JobRuns_List.json │ │ │ │ ├── Operations_List.json │ │ │ │ ├── Projects_CreateOrUpdate.json │ │ │ │ ├── Projects_Delete.json │ │ │ │ ├── Projects_Get.json │ │ │ │ ├── Projects_List.json │ │ │ │ ├── Projects_Update.json │ │ │ │ ├── StorageMovers_CreateOrUpdate.json │ │ │ │ ├── StorageMovers_Delete.json │ │ │ │ ├── StorageMovers_Get.json │ │ │ │ ├── StorageMovers_List.json │ │ │ │ ├── StorageMovers_ListBySubscription.json │ │ │ │ └── StorageMovers_Update.json │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.StorageMover.csproj │ │ │ ├── Az.StorageMover.nuspec │ │ │ ├── Az.StorageMover.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.StorageMover.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Agent.PowerShell.cs │ │ │ │ │ │ ├── Agent.TypeConverter.cs │ │ │ │ │ │ ├── Agent.cs │ │ │ │ │ │ ├── Agent.json.cs │ │ │ │ │ │ ├── AgentList.PowerShell.cs │ │ │ │ │ │ ├── AgentList.TypeConverter.cs │ │ │ │ │ │ ├── AgentList.cs │ │ │ │ │ │ ├── AgentList.json.cs │ │ │ │ │ │ ├── AgentProperties.PowerShell.cs │ │ │ │ │ │ ├── AgentProperties.TypeConverter.cs │ │ │ │ │ │ ├── AgentProperties.cs │ │ │ │ │ │ ├── AgentProperties.json.cs │ │ │ │ │ │ ├── AgentPropertiesErrorDetails.PowerShell.cs │ │ │ │ │ │ ├── AgentPropertiesErrorDetails.TypeConverter.cs │ │ │ │ │ │ ├── AgentPropertiesErrorDetails.cs │ │ │ │ │ │ ├── AgentPropertiesErrorDetails.json.cs │ │ │ │ │ │ ├── AgentUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── AgentUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── AgentUpdateParameters.cs │ │ │ │ │ │ ├── AgentUpdateParameters.json.cs │ │ │ │ │ │ ├── AgentUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AgentUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AgentUpdateProperties.cs │ │ │ │ │ │ ├── AgentUpdateProperties.json.cs │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── AzureKeyVaultSmbCredentials.PowerShell.cs │ │ │ │ │ │ ├── AzureKeyVaultSmbCredentials.TypeConverter.cs │ │ │ │ │ │ ├── AzureKeyVaultSmbCredentials.cs │ │ │ │ │ │ ├── AzureKeyVaultSmbCredentials.json.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointProperties.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointProperties.json.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointUpdateProperties.cs │ │ │ │ │ │ ├── AzureMultiCloudConnectorEndpointUpdateProperties.json.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointProperties.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointProperties.json.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointUpdateProperties.cs │ │ │ │ │ │ ├── AzureStorageBlobContainerEndpointUpdateProperties.json.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointProperties.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointProperties.json.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointUpdateProperties.cs │ │ │ │ │ │ ├── AzureStorageNfsFileShareEndpointUpdateProperties.json.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointProperties.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointProperties.json.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointUpdateProperties.cs │ │ │ │ │ │ ├── AzureStorageSmbFileShareEndpointUpdateProperties.json.cs │ │ │ │ │ │ ├── Credentials.PowerShell.cs │ │ │ │ │ │ ├── Credentials.TypeConverter.cs │ │ │ │ │ │ ├── Credentials.cs │ │ │ │ │ │ ├── Credentials.json.cs │ │ │ │ │ │ ├── Endpoint.PowerShell.cs │ │ │ │ │ │ ├── Endpoint.TypeConverter.cs │ │ │ │ │ │ ├── Endpoint.cs │ │ │ │ │ │ ├── Endpoint.json.cs │ │ │ │ │ │ ├── EndpointBaseProperties.PowerShell.cs │ │ │ │ │ │ ├── EndpointBaseProperties.TypeConverter.cs │ │ │ │ │ │ ├── EndpointBaseProperties.cs │ │ │ │ │ │ ├── EndpointBaseProperties.json.cs │ │ │ │ │ │ ├── EndpointBaseUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── EndpointBaseUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── EndpointBaseUpdateParameters.cs │ │ │ │ │ │ ├── EndpointBaseUpdateParameters.json.cs │ │ │ │ │ │ ├── EndpointBaseUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── EndpointBaseUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── EndpointBaseUpdateProperties.cs │ │ │ │ │ │ ├── EndpointBaseUpdateProperties.json.cs │ │ │ │ │ │ ├── EndpointList.PowerShell.cs │ │ │ │ │ │ ├── EndpointList.TypeConverter.cs │ │ │ │ │ │ ├── EndpointList.cs │ │ │ │ │ │ ├── EndpointList.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── JobDefinition.PowerShell.cs │ │ │ │ │ │ ├── JobDefinition.TypeConverter.cs │ │ │ │ │ │ ├── JobDefinition.cs │ │ │ │ │ │ ├── JobDefinition.json.cs │ │ │ │ │ │ ├── JobDefinitionList.PowerShell.cs │ │ │ │ │ │ ├── JobDefinitionList.TypeConverter.cs │ │ │ │ │ │ ├── JobDefinitionList.cs │ │ │ │ │ │ ├── JobDefinitionList.json.cs │ │ │ │ │ │ ├── JobDefinitionProperties.PowerShell.cs │ │ │ │ │ │ ├── JobDefinitionProperties.TypeConverter.cs │ │ │ │ │ │ ├── JobDefinitionProperties.cs │ │ │ │ │ │ ├── JobDefinitionProperties.json.cs │ │ │ │ │ │ ├── JobDefinitionPropertiesSourceTargetMap.PowerShell.cs │ │ │ │ │ │ ├── JobDefinitionPropertiesSourceTargetMap.TypeConverter.cs │ │ │ │ │ │ ├── JobDefinitionPropertiesSourceTargetMap.cs │ │ │ │ │ │ ├── JobDefinitionPropertiesSourceTargetMap.json.cs │ │ │ │ │ │ ├── JobDefinitionUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── JobDefinitionUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── JobDefinitionUpdateParameters.cs │ │ │ │ │ │ ├── JobDefinitionUpdateParameters.json.cs │ │ │ │ │ │ ├── JobDefinitionUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── JobDefinitionUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── JobDefinitionUpdateProperties.cs │ │ │ │ │ │ ├── JobDefinitionUpdateProperties.json.cs │ │ │ │ │ │ ├── JobRun.PowerShell.cs │ │ │ │ │ │ ├── JobRun.TypeConverter.cs │ │ │ │ │ │ ├── JobRun.cs │ │ │ │ │ │ ├── JobRun.json.cs │ │ │ │ │ │ ├── JobRunError.PowerShell.cs │ │ │ │ │ │ ├── JobRunError.TypeConverter.cs │ │ │ │ │ │ ├── JobRunError.cs │ │ │ │ │ │ ├── JobRunError.json.cs │ │ │ │ │ │ ├── JobRunList.PowerShell.cs │ │ │ │ │ │ ├── JobRunList.TypeConverter.cs │ │ │ │ │ │ ├── JobRunList.cs │ │ │ │ │ │ ├── JobRunList.json.cs │ │ │ │ │ │ ├── JobRunProperties.PowerShell.cs │ │ │ │ │ │ ├── JobRunProperties.TypeConverter.cs │ │ │ │ │ │ ├── JobRunProperties.cs │ │ │ │ │ │ ├── JobRunProperties.json.cs │ │ │ │ │ │ ├── JobRunResourceId.PowerShell.cs │ │ │ │ │ │ ├── JobRunResourceId.TypeConverter.cs │ │ │ │ │ │ ├── JobRunResourceId.cs │ │ │ │ │ │ ├── JobRunResourceId.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.cs │ │ │ │ │ │ ├── ManagedServiceIdentity.json.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── ManagedServiceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── NfsMountEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── NfsMountEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── NfsMountEndpointProperties.cs │ │ │ │ │ │ ├── NfsMountEndpointProperties.json.cs │ │ │ │ │ │ ├── NfsMountEndpointUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── NfsMountEndpointUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── NfsMountEndpointUpdateProperties.cs │ │ │ │ │ │ ├── NfsMountEndpointUpdateProperties.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── Project.PowerShell.cs │ │ │ │ │ │ ├── Project.TypeConverter.cs │ │ │ │ │ │ ├── Project.cs │ │ │ │ │ │ ├── Project.json.cs │ │ │ │ │ │ ├── ProjectList.PowerShell.cs │ │ │ │ │ │ ├── ProjectList.TypeConverter.cs │ │ │ │ │ │ ├── ProjectList.cs │ │ │ │ │ │ ├── ProjectList.json.cs │ │ │ │ │ │ ├── ProjectProperties.PowerShell.cs │ │ │ │ │ │ ├── ProjectProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProjectProperties.cs │ │ │ │ │ │ ├── ProjectProperties.json.cs │ │ │ │ │ │ ├── ProjectUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── ProjectUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── ProjectUpdateParameters.cs │ │ │ │ │ │ ├── ProjectUpdateParameters.json.cs │ │ │ │ │ │ ├── ProjectUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── ProjectUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── ProjectUpdateProperties.cs │ │ │ │ │ │ ├── ProjectUpdateProperties.json.cs │ │ │ │ │ │ ├── ProxyResource.PowerShell.cs │ │ │ │ │ │ ├── ProxyResource.TypeConverter.cs │ │ │ │ │ │ ├── ProxyResource.cs │ │ │ │ │ │ ├── ProxyResource.json.cs │ │ │ │ │ │ ├── Recurrence.PowerShell.cs │ │ │ │ │ │ ├── Recurrence.TypeConverter.cs │ │ │ │ │ │ ├── Recurrence.cs │ │ │ │ │ │ ├── Recurrence.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SmbMountEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── SmbMountEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── SmbMountEndpointProperties.cs │ │ │ │ │ │ ├── SmbMountEndpointProperties.json.cs │ │ │ │ │ │ ├── SmbMountEndpointUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── SmbMountEndpointUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── SmbMountEndpointUpdateProperties.cs │ │ │ │ │ │ ├── SmbMountEndpointUpdateProperties.json.cs │ │ │ │ │ │ ├── SourceEndpoint.PowerShell.cs │ │ │ │ │ │ ├── SourceEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── SourceEndpoint.cs │ │ │ │ │ │ ├── SourceEndpoint.json.cs │ │ │ │ │ │ ├── SourceEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── SourceEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── SourceEndpointProperties.cs │ │ │ │ │ │ ├── SourceEndpointProperties.json.cs │ │ │ │ │ │ ├── SourceTargetMap.PowerShell.cs │ │ │ │ │ │ ├── SourceTargetMap.TypeConverter.cs │ │ │ │ │ │ ├── SourceTargetMap.cs │ │ │ │ │ │ ├── SourceTargetMap.json.cs │ │ │ │ │ │ ├── StorageMover.PowerShell.cs │ │ │ │ │ │ ├── StorageMover.TypeConverter.cs │ │ │ │ │ │ ├── StorageMover.cs │ │ │ │ │ │ ├── StorageMover.json.cs │ │ │ │ │ │ ├── StorageMoverIdentity.PowerShell.cs │ │ │ │ │ │ ├── StorageMoverIdentity.TypeConverter.cs │ │ │ │ │ │ ├── StorageMoverIdentity.cs │ │ │ │ │ │ ├── StorageMoverIdentity.json.cs │ │ │ │ │ │ ├── StorageMoverList.PowerShell.cs │ │ │ │ │ │ ├── StorageMoverList.TypeConverter.cs │ │ │ │ │ │ ├── StorageMoverList.cs │ │ │ │ │ │ ├── StorageMoverList.json.cs │ │ │ │ │ │ ├── StorageMoverProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageMoverProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageMoverProperties.cs │ │ │ │ │ │ ├── StorageMoverProperties.json.cs │ │ │ │ │ │ ├── StorageMoverUpdateParameters.PowerShell.cs │ │ │ │ │ │ ├── StorageMoverUpdateParameters.TypeConverter.cs │ │ │ │ │ │ ├── StorageMoverUpdateParameters.cs │ │ │ │ │ │ ├── StorageMoverUpdateParameters.json.cs │ │ │ │ │ │ ├── StorageMoverUpdateParametersTags.PowerShell.cs │ │ │ │ │ │ ├── StorageMoverUpdateParametersTags.TypeConverter.cs │ │ │ │ │ │ ├── StorageMoverUpdateParametersTags.cs │ │ │ │ │ │ ├── StorageMoverUpdateParametersTags.dictionary.cs │ │ │ │ │ │ ├── StorageMoverUpdateParametersTags.json.cs │ │ │ │ │ │ ├── StorageMoverUpdateProperties.PowerShell.cs │ │ │ │ │ │ ├── StorageMoverUpdateProperties.TypeConverter.cs │ │ │ │ │ │ ├── StorageMoverUpdateProperties.cs │ │ │ │ │ │ ├── StorageMoverUpdateProperties.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── TargetEndpoint.PowerShell.cs │ │ │ │ │ │ ├── TargetEndpoint.TypeConverter.cs │ │ │ │ │ │ ├── TargetEndpoint.cs │ │ │ │ │ │ ├── TargetEndpoint.json.cs │ │ │ │ │ │ ├── TargetEndpointProperties.PowerShell.cs │ │ │ │ │ │ ├── TargetEndpointProperties.TypeConverter.cs │ │ │ │ │ │ ├── TargetEndpointProperties.cs │ │ │ │ │ │ ├── TargetEndpointProperties.json.cs │ │ │ │ │ │ ├── Time.PowerShell.cs │ │ │ │ │ │ ├── Time.TypeConverter.cs │ │ │ │ │ │ ├── Time.cs │ │ │ │ │ │ ├── Time.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UploadLimitSchedule.PowerShell.cs │ │ │ │ │ │ ├── UploadLimitSchedule.TypeConverter.cs │ │ │ │ │ │ ├── UploadLimitSchedule.cs │ │ │ │ │ │ ├── UploadLimitSchedule.json.cs │ │ │ │ │ │ ├── UploadLimitWeeklyRecurrence.PowerShell.cs │ │ │ │ │ │ ├── UploadLimitWeeklyRecurrence.TypeConverter.cs │ │ │ │ │ │ ├── UploadLimitWeeklyRecurrence.cs │ │ │ │ │ │ ├── UploadLimitWeeklyRecurrence.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── WeeklyRecurrence.PowerShell.cs │ │ │ │ │ │ ├── WeeklyRecurrence.TypeConverter.cs │ │ │ │ │ │ ├── WeeklyRecurrence.cs │ │ │ │ │ │ └── WeeklyRecurrence.json.cs │ │ │ │ │ └── StorageMover.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzStorageMoverAgent_Get.cs │ │ │ │ │ ├── GetAzStorageMoverAgent_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageMoverAgent_GetViaIdentityStorageMover.cs │ │ │ │ │ ├── GetAzStorageMoverAgent_List.cs │ │ │ │ │ ├── GetAzStorageMoverEndpoint_Get.cs │ │ │ │ │ ├── GetAzStorageMoverEndpoint_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageMoverEndpoint_GetViaIdentityStorageMover.cs │ │ │ │ │ ├── GetAzStorageMoverEndpoint_List.cs │ │ │ │ │ ├── GetAzStorageMoverJobDefinition_Get.cs │ │ │ │ │ ├── GetAzStorageMoverJobDefinition_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageMoverJobDefinition_GetViaIdentityProject.cs │ │ │ │ │ ├── GetAzStorageMoverJobDefinition_GetViaIdentityStorageMover.cs │ │ │ │ │ ├── GetAzStorageMoverJobDefinition_List.cs │ │ │ │ │ ├── GetAzStorageMoverJobRun_Get.cs │ │ │ │ │ ├── GetAzStorageMoverJobRun_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageMoverJobRun_GetViaIdentityJobDefinition.cs │ │ │ │ │ ├── GetAzStorageMoverJobRun_GetViaIdentityProject.cs │ │ │ │ │ ├── GetAzStorageMoverJobRun_GetViaIdentityStorageMover.cs │ │ │ │ │ ├── GetAzStorageMoverJobRun_List.cs │ │ │ │ │ ├── GetAzStorageMoverOperation_List.cs │ │ │ │ │ ├── GetAzStorageMoverProject_Get.cs │ │ │ │ │ ├── GetAzStorageMoverProject_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageMoverProject_GetViaIdentityStorageMover.cs │ │ │ │ │ ├── GetAzStorageMoverProject_List.cs │ │ │ │ │ ├── GetAzStorageMover_Get.cs │ │ │ │ │ ├── GetAzStorageMover_GetViaIdentity.cs │ │ │ │ │ ├── GetAzStorageMover_List.cs │ │ │ │ │ ├── GetAzStorageMover_List1.cs │ │ │ │ │ ├── NewAzStorageMoverAgent_CreateExpanded.cs │ │ │ │ │ ├── NewAzStorageMoverAgent_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStorageMoverAgent_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzStorageMoverEndpoint_CreateExpanded.cs │ │ │ │ │ ├── NewAzStorageMoverEndpoint_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStorageMoverEndpoint_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzStorageMoverJobDefinition_CreateExpanded.cs │ │ │ │ │ ├── NewAzStorageMoverJobDefinition_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStorageMoverJobDefinition_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzStorageMoverProject_CreateExpanded.cs │ │ │ │ │ ├── NewAzStorageMoverProject_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStorageMoverProject_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzStorageMover_CreateExpanded.cs │ │ │ │ │ ├── NewAzStorageMover_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzStorageMover_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzStorageMoverAgent_Delete.cs │ │ │ │ │ ├── RemoveAzStorageMoverAgent_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzStorageMoverAgent_DeleteViaIdentityStorageMover.cs │ │ │ │ │ ├── RemoveAzStorageMoverEndpoint_Delete.cs │ │ │ │ │ ├── RemoveAzStorageMoverEndpoint_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzStorageMoverEndpoint_DeleteViaIdentityStorageMover.cs │ │ │ │ │ ├── RemoveAzStorageMoverJobDefinition_Delete.cs │ │ │ │ │ ├── RemoveAzStorageMoverJobDefinition_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzStorageMoverJobDefinition_DeleteViaIdentityProject.cs │ │ │ │ │ ├── RemoveAzStorageMoverJobDefinition_DeleteViaIdentityStorageMover.cs │ │ │ │ │ ├── RemoveAzStorageMoverProject_Delete.cs │ │ │ │ │ ├── RemoveAzStorageMoverProject_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzStorageMoverProject_DeleteViaIdentityStorageMover.cs │ │ │ │ │ ├── RemoveAzStorageMover_Delete.cs │ │ │ │ │ ├── RemoveAzStorageMover_DeleteViaIdentity.cs │ │ │ │ │ ├── SetAzStorageMoverAgent_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStorageMoverAgent_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStorageMoverAgent_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzStorageMoverEndpoint_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStorageMoverEndpoint_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStorageMoverEndpoint_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzStorageMoverJobDefinition_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStorageMoverJobDefinition_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStorageMoverJobDefinition_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzStorageMoverProject_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStorageMoverProject_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStorageMoverProject_UpdateViaJsonString.cs │ │ │ │ │ ├── SetAzStorageMover_UpdateExpanded.cs │ │ │ │ │ ├── SetAzStorageMover_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── SetAzStorageMover_UpdateViaJsonString.cs │ │ │ │ │ ├── StartAzStorageMoverJobDefinitionJob_Start.cs │ │ │ │ │ ├── StartAzStorageMoverJobDefinitionJob_StartViaIdentity.cs │ │ │ │ │ ├── StartAzStorageMoverJobDefinitionJob_StartViaIdentityProject.cs │ │ │ │ │ ├── StartAzStorageMoverJobDefinitionJob_StartViaIdentityStorageMover.cs │ │ │ │ │ ├── StopAzStorageMoverJobDefinitionJob_Stop.cs │ │ │ │ │ ├── StopAzStorageMoverJobDefinitionJob_StopViaIdentity.cs │ │ │ │ │ ├── StopAzStorageMoverJobDefinitionJob_StopViaIdentityProject.cs │ │ │ │ │ ├── StopAzStorageMoverJobDefinitionJob_StopViaIdentityStorageMover.cs │ │ │ │ │ ├── UpdateAzStorageMoverAgent_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverAgent_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverAgent_UpdateViaIdentityStorageMoverExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverAgent_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzStorageMoverAgent_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzStorageMoverEndpoint_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverEndpoint_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverEndpoint_UpdateViaIdentityStorageMoverExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverJobDefinition_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverJobDefinition_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverJobDefinition_UpdateViaIdentityProjectExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverJobDefinition_UpdateViaIdentityStorageMoverExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverJobDefinition_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzStorageMoverJobDefinition_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzStorageMoverProject_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverProject_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverProject_UpdateViaIdentityStorageMoverExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMoverProject_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzStorageMoverProject_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzStorageMover_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMover_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzStorageMover_UpdateViaJsonFilePath.cs │ │ │ │ │ └── UpdateAzStorageMover_UpdateViaJsonString.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.StorageMover.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── Workloads.SAPVirtualInstance.Management │ │ ├── SAPApplicationServerInstance.tsp │ │ ├── SAPCentralServerInstance.tsp │ │ ├── SAPDatabaseInstance.tsp │ │ ├── SAPVirtualInstance.tsp │ │ ├── SAPVirtualInstanceMetadata.tsp │ │ ├── client.tsp │ │ ├── custom.tsp │ │ ├── examples │ │ │ └── 2024-09-01 │ │ │ │ ├── Operations_List.json │ │ │ │ ├── SapApplicationServerInstances_Create.json │ │ │ │ ├── SapApplicationServerInstances_CreateForHaWithAvailabilitySet.json │ │ │ │ ├── SapApplicationServerInstances_Delete.json │ │ │ │ ├── SapApplicationServerInstances_Get.json │ │ │ │ ├── SapApplicationServerInstances_ListBySapVirtualInstance.json │ │ │ │ ├── SapApplicationServerInstances_StartInstance.json │ │ │ │ ├── SapApplicationServerInstances_StartInstanceVM.json │ │ │ │ ├── SapApplicationServerInstances_StopInstance.json │ │ │ │ ├── SapApplicationServerInstances_StopInstanceInfrastructure.json │ │ │ │ ├── SapApplicationServerInstances_StopInstanceSoft.json │ │ │ │ ├── SapApplicationServerInstances_StopInstanceSoftInfrastructure.json │ │ │ │ ├── SapApplicationServerInstances_Update.json │ │ │ │ ├── SapCentralInstances_Create.json │ │ │ │ ├── SapCentralInstances_CreateForHaWithAvailabilitySet.json │ │ │ │ ├── SapCentralInstances_Delete.json │ │ │ │ ├── SapCentralInstances_Get.json │ │ │ │ ├── SapCentralInstances_StartInstance.json │ │ │ │ ├── SapCentralInstances_StartInstanceVM.json │ │ │ │ ├── SapCentralInstances_StopInstance.json │ │ │ │ ├── SapCentralInstances_StopInstanceVM.json │ │ │ │ ├── SapCentralInstances_Update.json │ │ │ │ ├── SapCentralServerInstances_ListBySapVirtualInstance.json │ │ │ │ ├── SapDatabaseInstances_Create.json │ │ │ │ ├── SapDatabaseInstances_CreateForHaWithAvailabilitySet.json │ │ │ │ ├── SapDatabaseInstances_Delete.json │ │ │ │ ├── SapDatabaseInstances_Get.json │ │ │ │ ├── SapDatabaseInstances_List.json │ │ │ │ ├── SapDatabaseInstances_StartInstance.json │ │ │ │ ├── SapDatabaseInstances_StartInstanceVM.json │ │ │ │ ├── SapDatabaseInstances_StopInstance.json │ │ │ │ ├── SapDatabaseInstances_StopInstanceSoft.json │ │ │ │ ├── SapDatabaseInstances_StopInstanceSoftVM.json │ │ │ │ ├── SapDatabaseInstances_StopInstanceVM.json │ │ │ │ ├── SapDatabaseInstances_Update.json │ │ │ │ ├── SapVirtualInstances_CreateDetectDS.json │ │ │ │ ├── SapVirtualInstances_CreateDetectHaAvailabilitySet.json │ │ │ │ ├── SapVirtualInstances_CreateDetectHaAvailabilityZone.json │ │ │ │ ├── SapVirtualInstances_CreateDetectSingleServer.json │ │ │ │ ├── SapVirtualInstances_CreateInfraDS.json │ │ │ │ ├── SapVirtualInstances_CreateInfraDiskOsDSRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraDiskOsHaAvailabilitySetRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraDiskOsHaAvailabilityZoneRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraDiskOsSingleServerRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraHaAvailabilitySet.json │ │ │ │ ├── SapVirtualInstances_CreateInfraHaAvailabilityZone.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsComputeGalleryImage.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsCustomResourceNamesDS.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsCustomResourceNamesHaAvailabilitySet.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsCustomResourceNamesHaAvailabilityZone.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsCustomResourceNamesSingleServer.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsDSRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsHaAvailabilitySetRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsHaAvailabilityZoneRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraOsSIngleServerRecommended.json │ │ │ │ ├── SapVirtualInstances_CreateInfraSingleServer.json │ │ │ │ ├── SapVirtualInstances_CreateInfraWithExistingFileshare.json │ │ │ │ ├── SapVirtualInstances_CreateInfraWithNewFileshare.json │ │ │ │ ├── SapVirtualInstances_CreateInfraWithOsTrustedAccess.json │ │ │ │ ├── SapVirtualInstances_CreateInfraWithoutFileshare.json │ │ │ │ ├── SapVirtualInstances_CreateInstallDS.json │ │ │ │ ├── SapVirtualInstances_CreateInstallSingleServer.json │ │ │ │ ├── SapVirtualInstances_CreateRegisterSapSolutions.json │ │ │ │ ├── SapVirtualInstances_CreateRegisterSapSolutionsCustom.json │ │ │ │ ├── SapVirtualInstances_CreateRegisterWithTrustedAccess.json │ │ │ │ ├── SapVirtualInstances_Delete.json │ │ │ │ ├── SapVirtualInstances_Get.json │ │ │ │ ├── SapVirtualInstances_GetAcssInstallationBlocked.json │ │ │ │ ├── SapVirtualInstances_InvokeAvailabilityZoneDetails_eastus.json │ │ │ │ ├── SapVirtualInstances_InvokeAvailabilityZoneDetails_northeurope.json │ │ │ │ ├── SapVirtualInstances_InvokeDiskConfigurations_NonProd.json │ │ │ │ ├── SapVirtualInstances_InvokeDiskConfigurations_Prod.json │ │ │ │ ├── SapVirtualInstances_InvokeSapSupportedSku_Distributed.json │ │ │ │ ├── SapVirtualInstances_InvokeSapSupportedSku_DistributedHA_AvSet.json │ │ │ │ ├── SapVirtualInstances_InvokeSapSupportedSku_DistributedHA_AvZone.json │ │ │ │ ├── SapVirtualInstances_InvokeSapSupportedSku_SingleServer.json │ │ │ │ ├── SapVirtualInstances_InvokeSizingRecommendations_S4HANA_Distributed.json │ │ │ │ ├── SapVirtualInstances_InvokeSizingRecommendations_S4HANA_HA_AvSet.json │ │ │ │ ├── SapVirtualInstances_InvokeSizingRecommendations_S4HANA_HA_AvZone.json │ │ │ │ ├── SapVirtualInstances_InvokeSizingRecommendations_S4HANA_SingleServer.json │ │ │ │ ├── SapVirtualInstances_ListByResourceGroup.json │ │ │ │ ├── SapVirtualInstances_ListBySubscription.json │ │ │ │ ├── SapVirtualInstances_SoftStop.json │ │ │ │ ├── SapVirtualInstances_SoftStopVMAndSystem.json │ │ │ │ ├── SapVirtualInstances_Start.json │ │ │ │ ├── SapVirtualInstances_StartWithInfraOperations.json │ │ │ │ ├── SapVirtualInstances_Stop.json │ │ │ │ ├── SapVirtualInstances_StopVMAndSystem.json │ │ │ │ ├── SapVirtualInstances_Update.json │ │ │ │ └── SapVirtualInstances_UpdateTrustedAccess.json │ │ ├── main.tsp │ │ ├── models.tsp │ │ ├── target │ │ │ ├── .gitattributes │ │ │ ├── Az.SAPVirtualInstance.csproj │ │ │ ├── Az.SAPVirtualInstance.nuspec │ │ │ ├── Az.SAPVirtualInstance.psm1 │ │ │ ├── MSSharedLibKey.snk │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── build-module.ps1 │ │ │ ├── check-dependencies.ps1 │ │ │ ├── create-model-cmdlets.ps1 │ │ │ ├── custom │ │ │ │ ├── Az.SAPVirtualInstance.custom.psm1 │ │ │ │ └── README.md │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ ├── examples │ │ │ │ └── README.md │ │ │ ├── export-surface.ps1 │ │ │ ├── exports │ │ │ │ └── README.md │ │ │ ├── generate-help.ps1 │ │ │ ├── generate-portal-ux.ps1 │ │ │ ├── generated │ │ │ │ ├── Module.cs │ │ │ │ ├── api │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Any.PowerShell.cs │ │ │ │ │ │ ├── Any.TypeConverter.cs │ │ │ │ │ │ ├── Any.cs │ │ │ │ │ │ ├── Any.json.cs │ │ │ │ │ │ ├── ApplicationServerConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ApplicationServerConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationServerConfiguration.cs │ │ │ │ │ │ ├── ApplicationServerConfiguration.json.cs │ │ │ │ │ │ ├── ApplicationServerFullResourceNames.PowerShell.cs │ │ │ │ │ │ ├── ApplicationServerFullResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationServerFullResourceNames.cs │ │ │ │ │ │ ├── ApplicationServerFullResourceNames.json.cs │ │ │ │ │ │ ├── ApplicationServerVMDetails.PowerShell.cs │ │ │ │ │ │ ├── ApplicationServerVMDetails.TypeConverter.cs │ │ │ │ │ │ ├── ApplicationServerVMDetails.cs │ │ │ │ │ │ ├── ApplicationServerVMDetails.json.cs │ │ │ │ │ │ ├── CentralServerConfiguration.PowerShell.cs │ │ │ │ │ │ ├── CentralServerConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── CentralServerConfiguration.cs │ │ │ │ │ │ ├── CentralServerConfiguration.json.cs │ │ │ │ │ │ ├── CentralServerFullResourceNames.PowerShell.cs │ │ │ │ │ │ ├── CentralServerFullResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── CentralServerFullResourceNames.cs │ │ │ │ │ │ ├── CentralServerFullResourceNames.json.cs │ │ │ │ │ │ ├── CentralServerVMDetails.PowerShell.cs │ │ │ │ │ │ ├── CentralServerVMDetails.TypeConverter.cs │ │ │ │ │ │ ├── CentralServerVMDetails.cs │ │ │ │ │ │ ├── CentralServerVMDetails.json.cs │ │ │ │ │ │ ├── CreateAndMountFileShareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── CreateAndMountFileShareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── CreateAndMountFileShareConfiguration.cs │ │ │ │ │ │ ├── CreateAndMountFileShareConfiguration.json.cs │ │ │ │ │ │ ├── DatabaseConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DatabaseConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DatabaseConfiguration.cs │ │ │ │ │ │ ├── DatabaseConfiguration.json.cs │ │ │ │ │ │ ├── DatabaseServerFullResourceNames.PowerShell.cs │ │ │ │ │ │ ├── DatabaseServerFullResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── DatabaseServerFullResourceNames.cs │ │ │ │ │ │ ├── DatabaseServerFullResourceNames.json.cs │ │ │ │ │ │ ├── DatabaseVMDetails.PowerShell.cs │ │ │ │ │ │ ├── DatabaseVMDetails.TypeConverter.cs │ │ │ │ │ │ ├── DatabaseVMDetails.cs │ │ │ │ │ │ ├── DatabaseVMDetails.json.cs │ │ │ │ │ │ ├── DeployerVMPackages.PowerShell.cs │ │ │ │ │ │ ├── DeployerVMPackages.TypeConverter.cs │ │ │ │ │ │ ├── DeployerVMPackages.cs │ │ │ │ │ │ ├── DeployerVMPackages.json.cs │ │ │ │ │ │ ├── DeploymentConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DeploymentConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentConfiguration.cs │ │ │ │ │ │ ├── DeploymentConfiguration.json.cs │ │ │ │ │ │ ├── DeploymentWithOSConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DeploymentWithOSConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DeploymentWithOSConfiguration.cs │ │ │ │ │ │ ├── DeploymentWithOSConfiguration.json.cs │ │ │ │ │ │ ├── DiscoveryConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DiscoveryConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DiscoveryConfiguration.cs │ │ │ │ │ │ ├── DiscoveryConfiguration.json.cs │ │ │ │ │ │ ├── DiskConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DiskConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DiskConfiguration.cs │ │ │ │ │ │ ├── DiskConfiguration.json.cs │ │ │ │ │ │ ├── DiskConfigurationDiskVolumeConfigurations.PowerShell.cs │ │ │ │ │ │ ├── DiskConfigurationDiskVolumeConfigurations.TypeConverter.cs │ │ │ │ │ │ ├── DiskConfigurationDiskVolumeConfigurations.cs │ │ │ │ │ │ ├── DiskConfigurationDiskVolumeConfigurations.dictionary.cs │ │ │ │ │ │ ├── DiskConfigurationDiskVolumeConfigurations.json.cs │ │ │ │ │ │ ├── DiskDetails.PowerShell.cs │ │ │ │ │ │ ├── DiskDetails.TypeConverter.cs │ │ │ │ │ │ ├── DiskDetails.cs │ │ │ │ │ │ ├── DiskDetails.json.cs │ │ │ │ │ │ ├── DiskSku.PowerShell.cs │ │ │ │ │ │ ├── DiskSku.TypeConverter.cs │ │ │ │ │ │ ├── DiskSku.cs │ │ │ │ │ │ ├── DiskSku.json.cs │ │ │ │ │ │ ├── DiskVolumeConfiguration.PowerShell.cs │ │ │ │ │ │ ├── DiskVolumeConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── DiskVolumeConfiguration.cs │ │ │ │ │ │ ├── DiskVolumeConfiguration.json.cs │ │ │ │ │ │ ├── EnqueueReplicationServerProperties.PowerShell.cs │ │ │ │ │ │ ├── EnqueueReplicationServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── EnqueueReplicationServerProperties.cs │ │ │ │ │ │ ├── EnqueueReplicationServerProperties.json.cs │ │ │ │ │ │ ├── EnqueueServerProperties.PowerShell.cs │ │ │ │ │ │ ├── EnqueueServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── EnqueueServerProperties.cs │ │ │ │ │ │ ├── EnqueueServerProperties.json.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.PowerShell.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.TypeConverter.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.cs │ │ │ │ │ │ ├── ErrorAdditionalInfo.json.cs │ │ │ │ │ │ ├── ErrorDefinition.PowerShell.cs │ │ │ │ │ │ ├── ErrorDefinition.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDefinition.cs │ │ │ │ │ │ ├── ErrorDefinition.json.cs │ │ │ │ │ │ ├── ErrorDetail.PowerShell.cs │ │ │ │ │ │ ├── ErrorDetail.TypeConverter.cs │ │ │ │ │ │ ├── ErrorDetail.cs │ │ │ │ │ │ ├── ErrorDetail.json.cs │ │ │ │ │ │ ├── ErrorResponse.PowerShell.cs │ │ │ │ │ │ ├── ErrorResponse.TypeConverter.cs │ │ │ │ │ │ ├── ErrorResponse.cs │ │ │ │ │ │ ├── ErrorResponse.json.cs │ │ │ │ │ │ ├── ExternalInstallationSoftwareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ExternalInstallationSoftwareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ExternalInstallationSoftwareConfiguration.cs │ │ │ │ │ │ ├── ExternalInstallationSoftwareConfiguration.json.cs │ │ │ │ │ │ ├── FileShareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── FileShareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── FileShareConfiguration.cs │ │ │ │ │ │ ├── FileShareConfiguration.json.cs │ │ │ │ │ │ ├── GatewayServerProperties.PowerShell.cs │ │ │ │ │ │ ├── GatewayServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── GatewayServerProperties.cs │ │ │ │ │ │ ├── GatewayServerProperties.json.cs │ │ │ │ │ │ ├── HighAvailabilityConfiguration.PowerShell.cs │ │ │ │ │ │ ├── HighAvailabilityConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── HighAvailabilityConfiguration.cs │ │ │ │ │ │ ├── HighAvailabilityConfiguration.json.cs │ │ │ │ │ │ ├── HighAvailabilitySoftwareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── HighAvailabilitySoftwareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── HighAvailabilitySoftwareConfiguration.cs │ │ │ │ │ │ ├── HighAvailabilitySoftwareConfiguration.json.cs │ │ │ │ │ │ ├── ImageReference.PowerShell.cs │ │ │ │ │ │ ├── ImageReference.TypeConverter.cs │ │ │ │ │ │ ├── ImageReference.cs │ │ │ │ │ │ ├── ImageReference.json.cs │ │ │ │ │ │ ├── InfrastructureConfiguration.PowerShell.cs │ │ │ │ │ │ ├── InfrastructureConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── InfrastructureConfiguration.cs │ │ │ │ │ │ ├── InfrastructureConfiguration.json.cs │ │ │ │ │ │ ├── LinuxConfiguration.PowerShell.cs │ │ │ │ │ │ ├── LinuxConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── LinuxConfiguration.cs │ │ │ │ │ │ ├── LinuxConfiguration.json.cs │ │ │ │ │ │ ├── LoadBalancerDetails.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancerDetails.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancerDetails.cs │ │ │ │ │ │ ├── LoadBalancerDetails.json.cs │ │ │ │ │ │ ├── LoadBalancerResourceNames.PowerShell.cs │ │ │ │ │ │ ├── LoadBalancerResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── LoadBalancerResourceNames.cs │ │ │ │ │ │ ├── LoadBalancerResourceNames.json.cs │ │ │ │ │ │ ├── ManagedRgConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ManagedRgConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ManagedRgConfiguration.cs │ │ │ │ │ │ ├── ManagedRgConfiguration.json.cs │ │ │ │ │ │ ├── MessageServerProperties.PowerShell.cs │ │ │ │ │ │ ├── MessageServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── MessageServerProperties.cs │ │ │ │ │ │ ├── MessageServerProperties.json.cs │ │ │ │ │ │ ├── MountFileShareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── MountFileShareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── MountFileShareConfiguration.cs │ │ │ │ │ │ ├── MountFileShareConfiguration.json.cs │ │ │ │ │ │ ├── NetworkConfiguration.PowerShell.cs │ │ │ │ │ │ ├── NetworkConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── NetworkConfiguration.cs │ │ │ │ │ │ ├── NetworkConfiguration.json.cs │ │ │ │ │ │ ├── NetworkInterfaceResourceNames.PowerShell.cs │ │ │ │ │ │ ├── NetworkInterfaceResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── NetworkInterfaceResourceNames.cs │ │ │ │ │ │ ├── NetworkInterfaceResourceNames.json.cs │ │ │ │ │ │ ├── OSConfiguration.PowerShell.cs │ │ │ │ │ │ ├── OSConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── OSConfiguration.cs │ │ │ │ │ │ ├── OSConfiguration.json.cs │ │ │ │ │ │ ├── OSProfile.PowerShell.cs │ │ │ │ │ │ ├── OSProfile.TypeConverter.cs │ │ │ │ │ │ ├── OSProfile.cs │ │ │ │ │ │ ├── OSProfile.json.cs │ │ │ │ │ │ ├── OSSapConfiguration.PowerShell.cs │ │ │ │ │ │ ├── OSSapConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── OSSapConfiguration.cs │ │ │ │ │ │ ├── OSSapConfiguration.json.cs │ │ │ │ │ │ ├── Operation.PowerShell.cs │ │ │ │ │ │ ├── Operation.TypeConverter.cs │ │ │ │ │ │ ├── Operation.cs │ │ │ │ │ │ ├── Operation.json.cs │ │ │ │ │ │ ├── OperationDisplay.PowerShell.cs │ │ │ │ │ │ ├── OperationDisplay.TypeConverter.cs │ │ │ │ │ │ ├── OperationDisplay.cs │ │ │ │ │ │ ├── OperationDisplay.json.cs │ │ │ │ │ │ ├── OperationListResult.PowerShell.cs │ │ │ │ │ │ ├── OperationListResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationListResult.cs │ │ │ │ │ │ ├── OperationListResult.json.cs │ │ │ │ │ │ ├── OperationStatusResult.PowerShell.cs │ │ │ │ │ │ ├── OperationStatusResult.TypeConverter.cs │ │ │ │ │ │ ├── OperationStatusResult.cs │ │ │ │ │ │ ├── OperationStatusResult.json.cs │ │ │ │ │ │ ├── Resource.PowerShell.cs │ │ │ │ │ │ ├── Resource.TypeConverter.cs │ │ │ │ │ │ ├── Resource.cs │ │ │ │ │ │ ├── Resource.json.cs │ │ │ │ │ │ ├── SapApplicationServerInstance.PowerShell.cs │ │ │ │ │ │ ├── SapApplicationServerInstance.TypeConverter.cs │ │ │ │ │ │ ├── SapApplicationServerInstance.cs │ │ │ │ │ │ ├── SapApplicationServerInstance.json.cs │ │ │ │ │ │ ├── SapApplicationServerInstanceListResult.PowerShell.cs │ │ │ │ │ │ ├── SapApplicationServerInstanceListResult.TypeConverter.cs │ │ │ │ │ │ ├── SapApplicationServerInstanceListResult.cs │ │ │ │ │ │ ├── SapApplicationServerInstanceListResult.json.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStartAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStartAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStartAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStartAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStopAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStopAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStopAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapApplicationServerInstancesStopAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapApplicationServerProperties.PowerShell.cs │ │ │ │ │ │ ├── SapApplicationServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── SapApplicationServerProperties.cs │ │ │ │ │ │ ├── SapApplicationServerProperties.json.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsRequest.PowerShell.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsRequest.TypeConverter.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsRequest.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsRequest.json.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsResult.PowerShell.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsResult.TypeConverter.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsResult.cs │ │ │ │ │ │ ├── SapAvailabilityZoneDetailsResult.json.cs │ │ │ │ │ │ ├── SapAvailabilityZonePair.PowerShell.cs │ │ │ │ │ │ ├── SapAvailabilityZonePair.TypeConverter.cs │ │ │ │ │ │ ├── SapAvailabilityZonePair.cs │ │ │ │ │ │ ├── SapAvailabilityZonePair.json.cs │ │ │ │ │ │ ├── SapCentralServerInstance.PowerShell.cs │ │ │ │ │ │ ├── SapCentralServerInstance.TypeConverter.cs │ │ │ │ │ │ ├── SapCentralServerInstance.cs │ │ │ │ │ │ ├── SapCentralServerInstance.json.cs │ │ │ │ │ │ ├── SapCentralServerInstanceListResult.PowerShell.cs │ │ │ │ │ │ ├── SapCentralServerInstanceListResult.TypeConverter.cs │ │ │ │ │ │ ├── SapCentralServerInstanceListResult.cs │ │ │ │ │ │ ├── SapCentralServerInstanceListResult.json.cs │ │ │ │ │ │ ├── SapCentralServerInstancesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapCentralServerInstancesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapCentralServerInstancesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapCentralServerInstancesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStartAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStartAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStartAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStartAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStopAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStopAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStopAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapCentralServerInstancesStopAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapCentralServerProperties.PowerShell.cs │ │ │ │ │ │ ├── SapCentralServerProperties.TypeConverter.cs │ │ │ │ │ │ ├── SapCentralServerProperties.cs │ │ │ │ │ │ ├── SapCentralServerProperties.json.cs │ │ │ │ │ │ ├── SapConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SapConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SapConfiguration.cs │ │ │ │ │ │ ├── SapConfiguration.json.cs │ │ │ │ │ │ ├── SapDatabaseInstance.PowerShell.cs │ │ │ │ │ │ ├── SapDatabaseInstance.TypeConverter.cs │ │ │ │ │ │ ├── SapDatabaseInstance.cs │ │ │ │ │ │ ├── SapDatabaseInstance.json.cs │ │ │ │ │ │ ├── SapDatabaseInstanceListResult.PowerShell.cs │ │ │ │ │ │ ├── SapDatabaseInstanceListResult.TypeConverter.cs │ │ │ │ │ │ ├── SapDatabaseInstanceListResult.cs │ │ │ │ │ │ ├── SapDatabaseInstanceListResult.json.cs │ │ │ │ │ │ ├── SapDatabaseInstancesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapDatabaseInstancesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapDatabaseInstancesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapDatabaseInstancesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStartAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStartAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStartAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStartAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStopAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStopAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStopAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapDatabaseInstancesStopAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapDatabaseProperties.PowerShell.cs │ │ │ │ │ │ ├── SapDatabaseProperties.TypeConverter.cs │ │ │ │ │ │ ├── SapDatabaseProperties.cs │ │ │ │ │ │ ├── SapDatabaseProperties.json.cs │ │ │ │ │ │ ├── SapDiskConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SapDiskConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SapDiskConfiguration.cs │ │ │ │ │ │ ├── SapDiskConfiguration.json.cs │ │ │ │ │ │ ├── SapDiskConfigurationsRequest.PowerShell.cs │ │ │ │ │ │ ├── SapDiskConfigurationsRequest.TypeConverter.cs │ │ │ │ │ │ ├── SapDiskConfigurationsRequest.cs │ │ │ │ │ │ ├── SapDiskConfigurationsRequest.json.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResult.PowerShell.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResult.TypeConverter.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResult.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResult.json.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResultVolumeConfigurations.PowerShell.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResultVolumeConfigurations.TypeConverter.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResultVolumeConfigurations.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResultVolumeConfigurations.dictionary.cs │ │ │ │ │ │ ├── SapDiskConfigurationsResultVolumeConfigurations.json.cs │ │ │ │ │ │ ├── SapInstallWithoutOsconfigSoftwareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SapInstallWithoutOsconfigSoftwareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SapInstallWithoutOsconfigSoftwareConfiguration.cs │ │ │ │ │ │ ├── SapInstallWithoutOsconfigSoftwareConfiguration.json.cs │ │ │ │ │ │ ├── SapSizingRecommendationRequest.PowerShell.cs │ │ │ │ │ │ ├── SapSizingRecommendationRequest.TypeConverter.cs │ │ │ │ │ │ ├── SapSizingRecommendationRequest.cs │ │ │ │ │ │ ├── SapSizingRecommendationRequest.json.cs │ │ │ │ │ │ ├── SapSizingRecommendationResult.PowerShell.cs │ │ │ │ │ │ ├── SapSizingRecommendationResult.TypeConverter.cs │ │ │ │ │ │ ├── SapSizingRecommendationResult.cs │ │ │ │ │ │ ├── SapSizingRecommendationResult.json.cs │ │ │ │ │ │ ├── SapSupportedResourceSkusResult.PowerShell.cs │ │ │ │ │ │ ├── SapSupportedResourceSkusResult.TypeConverter.cs │ │ │ │ │ │ ├── SapSupportedResourceSkusResult.cs │ │ │ │ │ │ ├── SapSupportedResourceSkusResult.json.cs │ │ │ │ │ │ ├── SapSupportedSku.PowerShell.cs │ │ │ │ │ │ ├── SapSupportedSku.TypeConverter.cs │ │ │ │ │ │ ├── SapSupportedSku.cs │ │ │ │ │ │ ├── SapSupportedSku.json.cs │ │ │ │ │ │ ├── SapSupportedSkusRequest.PowerShell.cs │ │ │ │ │ │ ├── SapSupportedSkusRequest.TypeConverter.cs │ │ │ │ │ │ ├── SapSupportedSkusRequest.cs │ │ │ │ │ │ ├── SapSupportedSkusRequest.json.cs │ │ │ │ │ │ ├── SapVirtualInstance.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstance.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstance.cs │ │ │ │ │ │ ├── SapVirtualInstance.json.cs │ │ │ │ │ │ ├── SapVirtualInstanceError.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstanceError.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstanceError.cs │ │ │ │ │ │ ├── SapVirtualInstanceError.json.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity.json.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity1.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity1.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity1.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentity1.json.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentityUserAssignedIdentities.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentityUserAssignedIdentities.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentityUserAssignedIdentities.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentityUserAssignedIdentities.dictionary.cs │ │ │ │ │ │ ├── SapVirtualInstanceIdentityUserAssignedIdentities.json.cs │ │ │ │ │ │ ├── SapVirtualInstanceListResult.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstanceListResult.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstanceListResult.cs │ │ │ │ │ │ ├── SapVirtualInstanceListResult.json.cs │ │ │ │ │ │ ├── SapVirtualInstanceProperties.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstanceProperties.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstanceProperties.cs │ │ │ │ │ │ ├── SapVirtualInstanceProperties.json.cs │ │ │ │ │ │ ├── SapVirtualInstancesDeleteAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstancesDeleteAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstancesDeleteAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapVirtualInstancesDeleteAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapVirtualInstancesStartAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstancesStartAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstancesStartAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapVirtualInstancesStartAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapVirtualInstancesStopAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstancesStopAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstancesStopAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapVirtualInstancesStopAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── SapVirtualInstancesUpdateAcceptedResponseHeaders.PowerShell.cs │ │ │ │ │ │ ├── SapVirtualInstancesUpdateAcceptedResponseHeaders.TypeConverter.cs │ │ │ │ │ │ ├── SapVirtualInstancesUpdateAcceptedResponseHeaders.cs │ │ │ │ │ │ ├── SapVirtualInstancesUpdateAcceptedResponseHeaders.json.cs │ │ │ │ │ │ ├── ServiceInitiatedSoftwareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ServiceInitiatedSoftwareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ServiceInitiatedSoftwareConfiguration.cs │ │ │ │ │ │ ├── ServiceInitiatedSoftwareConfiguration.json.cs │ │ │ │ │ │ ├── SharedStorageResourceNames.PowerShell.cs │ │ │ │ │ │ ├── SharedStorageResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── SharedStorageResourceNames.cs │ │ │ │ │ │ ├── SharedStorageResourceNames.json.cs │ │ │ │ │ │ ├── SingleServerConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SingleServerConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SingleServerConfiguration.cs │ │ │ │ │ │ ├── SingleServerConfiguration.json.cs │ │ │ │ │ │ ├── SingleServerCustomResourceNames.PowerShell.cs │ │ │ │ │ │ ├── SingleServerCustomResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── SingleServerCustomResourceNames.cs │ │ │ │ │ │ ├── SingleServerCustomResourceNames.json.cs │ │ │ │ │ │ ├── SingleServerFullResourceNames.PowerShell.cs │ │ │ │ │ │ ├── SingleServerFullResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── SingleServerFullResourceNames.cs │ │ │ │ │ │ ├── SingleServerFullResourceNames.json.cs │ │ │ │ │ │ ├── SingleServerRecommendationResult.PowerShell.cs │ │ │ │ │ │ ├── SingleServerRecommendationResult.TypeConverter.cs │ │ │ │ │ │ ├── SingleServerRecommendationResult.cs │ │ │ │ │ │ ├── SingleServerRecommendationResult.json.cs │ │ │ │ │ │ ├── SkipFileShareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SkipFileShareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SkipFileShareConfiguration.cs │ │ │ │ │ │ ├── SkipFileShareConfiguration.json.cs │ │ │ │ │ │ ├── SoftwareConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SoftwareConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SoftwareConfiguration.cs │ │ │ │ │ │ ├── SoftwareConfiguration.json.cs │ │ │ │ │ │ ├── SshConfiguration.PowerShell.cs │ │ │ │ │ │ ├── SshConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── SshConfiguration.cs │ │ │ │ │ │ ├── SshConfiguration.json.cs │ │ │ │ │ │ ├── SshKeyPair.PowerShell.cs │ │ │ │ │ │ ├── SshKeyPair.TypeConverter.cs │ │ │ │ │ │ ├── SshKeyPair.cs │ │ │ │ │ │ ├── SshKeyPair.json.cs │ │ │ │ │ │ ├── SshPublicKey.PowerShell.cs │ │ │ │ │ │ ├── SshPublicKey.TypeConverter.cs │ │ │ │ │ │ ├── SshPublicKey.cs │ │ │ │ │ │ ├── SshPublicKey.json.cs │ │ │ │ │ │ ├── StartRequest.PowerShell.cs │ │ │ │ │ │ ├── StartRequest.TypeConverter.cs │ │ │ │ │ │ ├── StartRequest.cs │ │ │ │ │ │ ├── StartRequest.json.cs │ │ │ │ │ │ ├── StopRequest.PowerShell.cs │ │ │ │ │ │ ├── StopRequest.TypeConverter.cs │ │ │ │ │ │ ├── StopRequest.cs │ │ │ │ │ │ ├── StopRequest.json.cs │ │ │ │ │ │ ├── StorageConfiguration.PowerShell.cs │ │ │ │ │ │ ├── StorageConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── StorageConfiguration.cs │ │ │ │ │ │ ├── StorageConfiguration.json.cs │ │ │ │ │ │ ├── StorageInformation.PowerShell.cs │ │ │ │ │ │ ├── StorageInformation.TypeConverter.cs │ │ │ │ │ │ ├── StorageInformation.cs │ │ │ │ │ │ ├── StorageInformation.json.cs │ │ │ │ │ │ ├── SystemData.PowerShell.cs │ │ │ │ │ │ ├── SystemData.TypeConverter.cs │ │ │ │ │ │ ├── SystemData.cs │ │ │ │ │ │ ├── SystemData.json.cs │ │ │ │ │ │ ├── ThreeTierConfiguration.PowerShell.cs │ │ │ │ │ │ ├── ThreeTierConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── ThreeTierConfiguration.cs │ │ │ │ │ │ ├── ThreeTierConfiguration.json.cs │ │ │ │ │ │ ├── ThreeTierCustomResourceNames.PowerShell.cs │ │ │ │ │ │ ├── ThreeTierCustomResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── ThreeTierCustomResourceNames.cs │ │ │ │ │ │ ├── ThreeTierCustomResourceNames.json.cs │ │ │ │ │ │ ├── ThreeTierFullResourceNames.PowerShell.cs │ │ │ │ │ │ ├── ThreeTierFullResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── ThreeTierFullResourceNames.cs │ │ │ │ │ │ ├── ThreeTierFullResourceNames.json.cs │ │ │ │ │ │ ├── ThreeTierRecommendationResult.PowerShell.cs │ │ │ │ │ │ ├── ThreeTierRecommendationResult.TypeConverter.cs │ │ │ │ │ │ ├── ThreeTierRecommendationResult.cs │ │ │ │ │ │ ├── ThreeTierRecommendationResult.json.cs │ │ │ │ │ │ ├── TrackedResource.PowerShell.cs │ │ │ │ │ │ ├── TrackedResource.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResource.cs │ │ │ │ │ │ ├── TrackedResource.json.cs │ │ │ │ │ │ ├── TrackedResourceTags.PowerShell.cs │ │ │ │ │ │ ├── TrackedResourceTags.TypeConverter.cs │ │ │ │ │ │ ├── TrackedResourceTags.cs │ │ │ │ │ │ ├── TrackedResourceTags.dictionary.cs │ │ │ │ │ │ ├── TrackedResourceTags.json.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequest.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequest.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequest.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequest.json.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequestTags.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequestTags.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequestTags.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequestTags.dictionary.cs │ │ │ │ │ │ ├── UpdateSapApplicationInstanceRequestTags.json.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequest.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequest.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequest.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequest.json.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequestTags.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequestTags.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequestTags.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequestTags.dictionary.cs │ │ │ │ │ │ ├── UpdateSapCentralInstanceRequestTags.json.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequest.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequest.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequest.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequest.json.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequestTags.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequestTags.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequestTags.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequestTags.dictionary.cs │ │ │ │ │ │ ├── UpdateSapDatabaseInstanceRequestTags.json.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceProperties.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceProperties.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceProperties.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceProperties.json.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequest.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequest.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequest.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequest.json.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequestTags.PowerShell.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequestTags.TypeConverter.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequestTags.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequestTags.dictionary.cs │ │ │ │ │ │ ├── UpdateSapVirtualInstanceRequestTags.json.cs │ │ │ │ │ │ ├── UserAssignedIdentity.PowerShell.cs │ │ │ │ │ │ ├── UserAssignedIdentity.TypeConverter.cs │ │ │ │ │ │ ├── UserAssignedIdentity.cs │ │ │ │ │ │ ├── UserAssignedIdentity.json.cs │ │ │ │ │ │ ├── VirtualMachineConfiguration.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineConfiguration.cs │ │ │ │ │ │ ├── VirtualMachineConfiguration.json.cs │ │ │ │ │ │ ├── VirtualMachineResourceNames.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineResourceNames.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineResourceNames.cs │ │ │ │ │ │ ├── VirtualMachineResourceNames.json.cs │ │ │ │ │ │ ├── VirtualMachineResourceNamesDataDiskNames.PowerShell.cs │ │ │ │ │ │ ├── VirtualMachineResourceNamesDataDiskNames.TypeConverter.cs │ │ │ │ │ │ ├── VirtualMachineResourceNamesDataDiskNames.cs │ │ │ │ │ │ ├── VirtualMachineResourceNamesDataDiskNames.dictionary.cs │ │ │ │ │ │ ├── VirtualMachineResourceNamesDataDiskNames.json.cs │ │ │ │ │ │ ├── WindowsConfiguration.PowerShell.cs │ │ │ │ │ │ ├── WindowsConfiguration.TypeConverter.cs │ │ │ │ │ │ ├── WindowsConfiguration.cs │ │ │ │ │ │ └── WindowsConfiguration.json.cs │ │ │ │ │ └── WorkloadsClient.cs │ │ │ │ ├── cmdlets │ │ │ │ │ ├── GetAzSapVirtualInstanceOperation_List.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapApplicationServerInstance_Get.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapApplicationServerInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapApplicationServerInstance_GetViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapApplicationServerInstance_List.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapCentralServerInstance_Get.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapCentralServerInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapCentralServerInstance_GetViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapCentralServerInstance_List.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapDatabaseInstance_Get.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapDatabaseInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapDatabaseInstance_GetViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapDatabaseInstance_List.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapVirtualInstance_Get.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapVirtualInstance_GetViaIdentity.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapVirtualInstance_List.cs │ │ │ │ │ ├── GetAzSapVirtualInstanceSapVirtualInstance_List1.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceAvailabilityZoneDetail_Invoke.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceAvailabilityZoneDetail_InvokeExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceAvailabilityZoneDetail_InvokeViaIdentity.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceAvailabilityZoneDetail_InvokeViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceAvailabilityZoneDetail_InvokeViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceAvailabilityZoneDetail_InvokeViaJsonString.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceDiskConfiguration_Invoke.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceDiskConfiguration_InvokeExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceDiskConfiguration_InvokeViaIdentity.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceDiskConfiguration_InvokeViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceDiskConfiguration_InvokeViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceDiskConfiguration_InvokeViaJsonString.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSapSupportedSku_Invoke.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSapSupportedSku_InvokeExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSapSupportedSku_InvokeViaIdentity.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSapSupportedSku_InvokeViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSapSupportedSku_InvokeViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSapSupportedSku_InvokeViaJsonString.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSizingRecommendation_Invoke.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSizingRecommendation_InvokeExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSizingRecommendation_InvokeViaIdentity.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSizingRecommendation_InvokeViaIdentityExpanded.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSizingRecommendation_InvokeViaJsonFilePath.cs │ │ │ │ │ ├── InvokeAzSapVirtualInstanceInvokeSapVirtualInstanceSizingRecommendation_InvokeViaJsonString.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapApplicationServerInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapApplicationServerInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapApplicationServerInstance_CreateViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapApplicationServerInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapApplicationServerInstance_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapCentralServerInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapCentralServerInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapCentralServerInstance_CreateViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapCentralServerInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapCentralServerInstance_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapDatabaseInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapDatabaseInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapDatabaseInstance_CreateViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapDatabaseInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapDatabaseInstance_CreateViaJsonString.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapVirtualInstance_CreateExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapVirtualInstance_CreateViaIdentityExpanded.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapVirtualInstance_CreateViaJsonFilePath.cs │ │ │ │ │ ├── NewAzSapVirtualInstanceSapVirtualInstance_CreateViaJsonString.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapApplicationServerInstance_Delete.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapApplicationServerInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapApplicationServerInstance_DeleteViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapCentralServerInstance_Delete.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapCentralServerInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapCentralServerInstance_DeleteViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapDatabaseInstance_Delete.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapDatabaseInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapDatabaseInstance_DeleteViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapVirtualInstance_Delete.cs │ │ │ │ │ ├── RemoveAzSapVirtualInstanceSapVirtualInstance_DeleteViaIdentity.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_Start.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartViaIdentity.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapApplicationServerInstance_StartViaJsonString.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_Start.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartViaIdentity.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapCentralServerInstance_StartViaJsonString.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_Start.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartViaIdentity.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapDatabaseInstance_StartViaJsonString.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapVirtualInstance_Start.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapVirtualInstance_StartExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapVirtualInstance_StartViaIdentity.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapVirtualInstance_StartViaIdentityExpanded.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapVirtualInstance_StartViaJsonFilePath.cs │ │ │ │ │ ├── StartAzSapVirtualInstanceSapVirtualInstance_StartViaJsonString.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_Stop.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopViaIdentity.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapApplicationServerInstance_StopViaJsonString.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_Stop.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopViaIdentity.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapCentralServerInstance_StopViaJsonString.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_Stop.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopViaIdentity.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopViaIdentitySapVirtualInstance.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapDatabaseInstance_StopViaJsonString.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapVirtualInstance_Stop.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapVirtualInstance_StopExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapVirtualInstance_StopViaIdentity.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapVirtualInstance_StopViaIdentityExpanded.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapVirtualInstance_StopViaJsonFilePath.cs │ │ │ │ │ ├── StopAzSapVirtualInstanceSapVirtualInstance_StopViaJsonString.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapApplicationServerInstance_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapApplicationServerInstance_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapApplicationServerInstance_UpdateViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapApplicationServerInstance_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapApplicationServerInstance_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapCentralServerInstance_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapCentralServerInstance_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapCentralServerInstance_UpdateViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapCentralServerInstance_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapCentralServerInstance_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapDatabaseInstance_UpdateExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapDatabaseInstance_UpdateViaIdentityExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapDatabaseInstance_UpdateViaIdentitySapVirtualInstanceExpanded.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapDatabaseInstance_UpdateViaJsonFilePath.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapDatabaseInstance_UpdateViaJsonString.cs │ │ │ │ │ ├── UpdateAzSapVirtualInstanceSapVirtualInstance_UpdateExpanded.cs │ │ │ │ │ └── UpdateAzSapVirtualInstanceSapVirtualInstance_UpdateViaIdentityExpanded.cs │ │ │ │ └── runtime │ │ │ │ │ ├── AsyncCommandRuntime.cs │ │ │ │ │ ├── AsyncJob.cs │ │ │ │ │ ├── AsyncOperationResponse.cs │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── ExternalDocsAttribute.cs │ │ │ │ │ └── PSArgumentCompleterAttribute.cs │ │ │ │ │ ├── BuildTime │ │ │ │ │ ├── Cmdlets │ │ │ │ │ │ ├── ExportCmdletSurface.cs │ │ │ │ │ │ ├── ExportExampleStub.cs │ │ │ │ │ │ ├── ExportFormatPs1xml.cs │ │ │ │ │ │ ├── ExportHelpMarkdown.cs │ │ │ │ │ │ ├── ExportModelSurface.cs │ │ │ │ │ │ ├── ExportProxyCmdlet.cs │ │ │ │ │ │ ├── ExportPsd1.cs │ │ │ │ │ │ ├── ExportTestStub.cs │ │ │ │ │ │ ├── GetCommonParameter.cs │ │ │ │ │ │ ├── GetModuleGuid.cs │ │ │ │ │ │ └── GetScriptCmdlet.cs │ │ │ │ │ ├── CollectionExtensions.cs │ │ │ │ │ ├── MarkdownRenderer.cs │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── PsFormatTypes.cs │ │ │ │ │ │ ├── PsHelpMarkdownOutputs.cs │ │ │ │ │ │ ├── PsHelpTypes.cs │ │ │ │ │ │ ├── PsMarkdownTypes.cs │ │ │ │ │ │ ├── PsProxyOutputs.cs │ │ │ │ │ │ └── PsProxyTypes.cs │ │ │ │ │ ├── PsAttributes.cs │ │ │ │ │ ├── PsExtensions.cs │ │ │ │ │ ├── PsHelpers.cs │ │ │ │ │ ├── StringExtensions.cs │ │ │ │ │ └── XmlExtensions.cs │ │ │ │ │ ├── CmdInfoHandler.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Conversions │ │ │ │ │ ├── ConversionException.cs │ │ │ │ │ ├── IJsonConverter.cs │ │ │ │ │ ├── Instances │ │ │ │ │ │ ├── BinaryConverter.cs │ │ │ │ │ │ ├── BooleanConverter.cs │ │ │ │ │ │ ├── DateTimeConverter.cs │ │ │ │ │ │ ├── DateTimeOffsetConverter.cs │ │ │ │ │ │ ├── DecimalConverter.cs │ │ │ │ │ │ ├── DoubleConverter.cs │ │ │ │ │ │ ├── EnumConverter.cs │ │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ │ ├── HashSet'1Converter.cs │ │ │ │ │ │ ├── Int16Converter.cs │ │ │ │ │ │ ├── Int32Converter.cs │ │ │ │ │ │ ├── Int64Converter.cs │ │ │ │ │ │ ├── JsonArrayConverter.cs │ │ │ │ │ │ ├── JsonObjectConverter.cs │ │ │ │ │ │ ├── SingleConverter.cs │ │ │ │ │ │ ├── StringConverter.cs │ │ │ │ │ │ ├── TimeSpanConverter.cs │ │ │ │ │ │ ├── UInt16Converter.cs │ │ │ │ │ │ ├── UInt32Converter.cs │ │ │ │ │ │ ├── UInt64Converter.cs │ │ │ │ │ │ └── UriConverter.cs │ │ │ │ │ ├── JsonConverter.cs │ │ │ │ │ ├── JsonConverterAttribute.cs │ │ │ │ │ ├── JsonConverterFactory.cs │ │ │ │ │ └── StringLikeConverter.cs │ │ │ │ │ ├── Customizations │ │ │ │ │ ├── IJsonSerializable.cs │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ └── XNodeArray.cs │ │ │ │ │ ├── Debugging.cs │ │ │ │ │ ├── DictionaryExtensions.cs │ │ │ │ │ ├── EventData.cs │ │ │ │ │ ├── EventDataExtensions.cs │ │ │ │ │ ├── EventListener.cs │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── EventsExtensions.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Helpers │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── StringBuilderExtensions.cs │ │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ │ ├── Seperator.cs │ │ │ │ │ ├── TypeDetails.cs │ │ │ │ │ └── XHelper.cs │ │ │ │ │ ├── HttpPipeline.cs │ │ │ │ │ ├── HttpPipelineMocking.ps1 │ │ │ │ │ ├── IAssociativeArray.cs │ │ │ │ │ ├── IHeaderSerializable.cs │ │ │ │ │ ├── ISendAsync.cs │ │ │ │ │ ├── InfoAttribute.cs │ │ │ │ │ ├── InputHandler.cs │ │ │ │ │ ├── Iso │ │ │ │ │ └── IsoDate.cs │ │ │ │ │ ├── JsonType.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageAttributeHelper.cs │ │ │ │ │ ├── Method.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── JsonMember.cs │ │ │ │ │ ├── JsonModel.cs │ │ │ │ │ └── JsonModelCache.cs │ │ │ │ │ ├── Nodes │ │ │ │ │ ├── Collections │ │ │ │ │ │ ├── JsonArray.cs │ │ │ │ │ │ ├── XImmutableArray.cs │ │ │ │ │ │ ├── XList.cs │ │ │ │ │ │ ├── XNodeArray.cs │ │ │ │ │ │ └── XSet.cs │ │ │ │ │ ├── JsonBoolean.cs │ │ │ │ │ ├── JsonDate.cs │ │ │ │ │ ├── JsonNode.cs │ │ │ │ │ ├── JsonNumber.cs │ │ │ │ │ ├── JsonObject.cs │ │ │ │ │ ├── JsonString.cs │ │ │ │ │ ├── XBinary.cs │ │ │ │ │ └── XNull.cs │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ └── ParseException.cs │ │ │ │ │ ├── JsonParser.cs │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonTokenizer.cs │ │ │ │ │ ├── Location.cs │ │ │ │ │ ├── Readers │ │ │ │ │ │ └── SourceReader.cs │ │ │ │ │ └── TokenReader.cs │ │ │ │ │ ├── PipelineMocking.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Response.cs │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── PropertyTransformation.cs │ │ │ │ │ └── SerializationOptions.cs │ │ │ │ │ ├── SerializationMode.cs │ │ │ │ │ ├── TypeConverterExtensions.cs │ │ │ │ │ ├── UndeclaredResponseException.cs │ │ │ │ │ ├── Writers │ │ │ │ │ └── JsonWriter.cs │ │ │ │ │ └── delegates.cs │ │ │ ├── how-to.md │ │ │ ├── internal │ │ │ │ ├── Az.SAPVirtualInstance.internal.psm1 │ │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── pack-module.ps1 │ │ │ ├── resources │ │ │ │ └── README.md │ │ │ ├── run-module.ps1 │ │ │ ├── test-module.ps1 │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ └── loadEnv.ps1 │ │ │ ├── tools │ │ │ │ └── Resources │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── custom │ │ │ │ │ └── New-AzDeployment.ps1 │ │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples │ │ │ │ │ └── README.md │ │ │ │ │ ├── how-to.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── resources │ │ │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ │ │ ├── ModelSurface.md │ │ │ │ │ └── README.md │ │ │ │ │ └── test │ │ │ │ │ └── README.md │ │ │ └── utils │ │ │ │ ├── Get-SubscriptionIdTestSafe.ps1 │ │ │ │ └── Unprotect-SecureString.ps1 │ │ └── tspconfig.yaml │ ├── configuration.json │ └── package.json ├── tests-m4-upgrade │ ├── .gitignore │ ├── AutoRestUpgradeTest.ps1 │ ├── Configuration.json │ ├── README.md │ ├── basic-disableazure-get │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-disableazure-response │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-get-delete-put-patch │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-get-delete │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-get-querystr │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-get-response-operation │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-get │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-polymorphism │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-request-methods │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-response-multioperation │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-spec-required │ │ ├── readme.md │ │ └── swagger.json │ ├── basic-spec-root │ │ ├── readme.md │ │ └── swagger.json │ ├── component-definitions-combined │ │ ├── readme.md │ │ └── swagger.json │ ├── component-definitions-local │ │ ├── readme.md │ │ └── swagger.json │ ├── component-definitions-remote │ │ ├── readme.md │ │ └── swagger.json │ ├── component-definitions-url │ │ ├── readme.md │ │ └── swagger.json │ ├── component-multiparam │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-additional │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-grouping │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-inbody │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-localremote │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-remote │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-resourceasarraay │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param-specialproperties │ │ ├── readme.md │ │ └── swagger.json │ ├── component-param │ │ ├── readme.md │ │ └── swagger.json │ ├── databricks │ │ ├── databricks.json │ │ └── readme.md │ ├── datamodels-combineschema │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-array │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-boolean-quirks │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-boolean │ │ ├── examples │ │ │ ├── bool_getFalse.json │ │ │ ├── bool_getNull.json │ │ │ ├── bool_getTrue.json │ │ │ ├── bool_putFalse.json │ │ │ └── bool_putTrue.json │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-byte │ │ ├── examples │ │ │ ├── byte_getEmpty.json │ │ │ ├── byte_getInvalid.json │ │ │ ├── byte_getNonAscii.json │ │ │ ├── byte_getNull.json │ │ │ └── byte_putNonAscii.json │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-date │ │ ├── examples │ │ │ ├── date_getMaxDate.json │ │ │ ├── date_getMinDate.json │ │ │ ├── date_getNull.json │ │ │ ├── date_putMaxDate.json │ │ │ └── date_putMinDate.json │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-datetime │ │ ├── examples │ │ │ ├── datetime_getLocalNegativeOffsetMinDateTime.json │ │ │ ├── datetime_getLocalNoOffsetMinDateTime.json │ │ │ ├── datetime_getLocalPositiveOffsetLowercaseMaxDateTime.json │ │ │ ├── datetime_getLocalPositiveOffsetUppercaseMaxDateTime.json │ │ │ ├── datetime_getNull.json │ │ │ ├── datetime_getUtcLowercaseMaxDateTime.json │ │ │ ├── datetime_getUtcMinDateTime.json │ │ │ ├── datetime_getUtcUppercaseMaxDateTime.json │ │ │ ├── datetime_putLocalNegativeOffsetMinDateTime.json │ │ │ ├── datetime_putLocalPositiveOffsetMaxDateTime.json │ │ │ ├── datetime_putUtcMaxDateTime.json │ │ │ └── datetime_putUtcMinDateTime.json │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-file │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-integer │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-mixedtypes │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-nullable │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-object │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-string │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-datatypes-unixtime │ │ ├── readme.md │ │ └── swagger.json │ ├── datamodels-enums │ │ ├── readme.md │ │ └── swagger.json │ ├── directive-aliasremoval │ │ ├── readme.md │ │ └── swagger.json │ ├── directive-cmdlet │ │ ├── readme.md │ │ └── swagger.json │ ├── directive-enum │ │ ├── readme.md │ │ └── swagger.json │ ├── directive-model │ │ ├── readme.md │ │ └── swagger.json │ ├── directive-parameter │ │ ├── readme.md │ │ └── swagger.json │ ├── directive-tableformat │ │ ├── readme.md │ │ └── swagger.json │ ├── examples │ │ ├── OperationsList.json │ │ ├── RemoteDefinitions.json │ │ ├── WorkspaceCreate.json │ │ ├── WorkspaceCreateWithParameters.json │ │ ├── WorkspaceDelete.json │ │ ├── WorkspaceGet.json │ │ ├── WorkspaceGetParameters.json │ │ ├── WorkspaceUpdate.json │ │ ├── WorkspacesListByResourceGroup.json │ │ └── WorkspacesListBySubscription.json │ ├── extension-ms-azureresource │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-clientflatten │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-clientname │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-discriminatorvalue │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-enum │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-examples │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-longruningoperation │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-mutability │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-pageable │ │ ├── readme.md │ │ └── swagger.json │ ├── extension-ms-paramlocation │ │ ├── readme.md │ │ └── swagger.json │ ├── functions │ │ ├── helpers │ │ │ ├── AppInsights │ │ │ │ ├── readme.md │ │ │ │ └── readme.noprofile.md │ │ │ ├── KeyVault │ │ │ │ └── readme.noprofile.md │ │ │ ├── ManagedIdentity │ │ │ │ └── readme.noprofile.md │ │ │ └── Storage │ │ │ │ ├── readme.md │ │ │ │ └── readme.noprofile.md │ │ └── readme.md │ ├── kubconf │ │ ├── kubernetesconfiguration.json │ │ └── readme.md │ ├── mysql │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── common-types │ │ │ ├── resource-management │ │ │ │ ├── v1 │ │ │ │ │ ├── privatelinks.json │ │ │ │ │ └── types.json │ │ │ │ └── v2 │ │ │ │ │ └── types.json │ │ │ └── rfcs │ │ │ │ └── rfc7517.json │ │ ├── custom │ │ │ └── readme.md │ │ ├── docs │ │ │ └── readme.md │ │ ├── examples │ │ │ └── readme.md │ │ ├── how-to.md │ │ ├── license.txt │ │ ├── mysql.json │ │ ├── readme.md │ │ ├── resources │ │ │ └── readme.md │ │ ├── test │ │ │ ├── loadEnv.ps1 │ │ │ └── readme.md │ │ └── tools │ │ │ └── Resources │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── custom │ │ │ └── New-AzDeployment.ps1 │ │ │ ├── docs │ │ │ └── readme.md │ │ │ ├── examples │ │ │ └── readme.md │ │ │ ├── how-to.md │ │ │ ├── license.txt │ │ │ ├── readme.md │ │ │ ├── resources │ │ │ ├── CmdletSurface-latest-2019-04-30.md │ │ │ ├── ModelSurface.md │ │ │ └── readme.md │ │ │ └── test │ │ │ └── readme.md │ ├── readme.azure.noprofile.md │ ├── sample-swagger.json │ └── tsi │ │ ├── readme.md │ │ └── timeseriesinsights.json └── tests-sdk1-support │ ├── .gitignore │ ├── AutoRestSupportSdkTest.ps1 │ ├── README.md │ ├── basic-disableazure-get │ ├── csharp │ │ ├── AutoRestUpgradeClient.cs │ │ ├── IAutoRestUpgradeClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_AutoRestUpgradeClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-disableazure-response │ ├── csharp │ │ ├── AutoRestUpgradeClient.cs │ │ ├── IAutoRestUpgradeClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_AutoRestUpgradeClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-get-delete-put-patch │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-get-delete │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-get-querystr │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IUsersOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── UsersOperations.cs │ │ └── UsersOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-get-response-operation │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-get │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-polymorphism │ ├── csharp │ │ ├── EnvironmentsOperations.cs │ │ ├── EnvironmentsOperationsExtensions.cs │ │ ├── IEnvironmentsOperations.cs │ │ ├── ITimeSeriesInsightsClient.cs │ │ ├── Models │ │ │ ├── AccessPolicyCreateOrUpdateParameters.cs │ │ │ ├── AccessPolicyListResponse.cs │ │ │ ├── AccessPolicyResource.cs │ │ │ ├── AccessPolicyRole.cs │ │ │ ├── AccessPolicyUpdateParameters.cs │ │ │ ├── AzureEventSourceProperties.cs │ │ │ ├── CreateOrUpdateTrackedResourceProperties.cs │ │ │ ├── DataStringComparisonBehavior.cs │ │ │ ├── EnvironmentCreateOrUpdateParameters.cs │ │ │ ├── EnvironmentListResponse.cs │ │ │ ├── EnvironmentResource.cs │ │ │ ├── EnvironmentResourceProperties.cs │ │ │ ├── EnvironmentStateDetails.cs │ │ │ ├── EnvironmentStatus.cs │ │ │ ├── EnvironmentUpdateParameters.cs │ │ │ ├── EventHubEventSourceCommonProperties.cs │ │ │ ├── EventHubEventSourceCreateOrUpdateParameters.cs │ │ │ ├── EventHubEventSourceResource.cs │ │ │ ├── EventHubEventSourceUpdateParameters.cs │ │ │ ├── EventSourceCommonProperties.cs │ │ │ ├── EventSourceCreateOrUpdateParameters.cs │ │ │ ├── EventSourceListResponse.cs │ │ │ ├── EventSourceMutableProperties.cs │ │ │ ├── EventSourceResource.cs │ │ │ ├── EventSourceUpdateParameters.cs │ │ │ ├── IngressEnvironmentStatus.cs │ │ │ ├── IngressState.cs │ │ │ ├── IoTHubEventSourceCommonProperties.cs │ │ │ ├── IoTHubEventSourceCreateOrUpdateParameters.cs │ │ │ ├── IoTHubEventSourceResource.cs │ │ │ ├── IoTHubEventSourceUpdateParameters.cs │ │ │ ├── LocalTimestamp.cs │ │ │ ├── LocalTimestampFormat.cs │ │ │ ├── LocalTimestampTimeZoneOffset.cs │ │ │ ├── LongTermEnvironmentCreateOrUpdateParameters.cs │ │ │ ├── LongTermEnvironmentResource.cs │ │ │ ├── LongTermEnvironmentUpdateParameters.cs │ │ │ ├── LongTermStorageConfigurationInput.cs │ │ │ ├── LongTermStorageConfigurationMutableProperties.cs │ │ │ ├── LongTermStorageConfigurationOutput.cs │ │ │ ├── Operation.cs │ │ │ ├── OperationDisplay.cs │ │ │ ├── OperationListResult.cs │ │ │ ├── PropertyType.cs │ │ │ ├── ProvisioningState.cs │ │ │ ├── ReferenceDataKeyPropertyType.cs │ │ │ ├── ReferenceDataSetCreateOrUpdateParameters.cs │ │ │ ├── ReferenceDataSetKeyProperty.cs │ │ │ ├── ReferenceDataSetListResponse.cs │ │ │ ├── ReferenceDataSetResource.cs │ │ │ ├── ReferenceDataSetUpdateParameters.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceProperties.cs │ │ │ ├── Sku.cs │ │ │ ├── SkuName.cs │ │ │ ├── StandardEnvironmentCreateOrUpdateParameters.cs │ │ │ ├── StandardEnvironmentResource.cs │ │ │ ├── StandardEnvironmentUpdateParameters.cs │ │ │ ├── StorageLimitExceededBehavior.cs │ │ │ ├── TimeSeriesIdProperty.cs │ │ │ ├── TrackedResource.cs │ │ │ ├── WarmStorageEnvironmentStatus.cs │ │ │ └── WarmStoragePropertiesState.cs │ │ ├── SdkInfo_TimeSeriesInsightsClient.cs │ │ └── TimeSeriesInsightsClient.cs │ ├── examples │ │ ├── EnvironmentsCreate.json │ │ └── EnvironmentsGet.json │ ├── readme.md │ └── swagger.json │ ├── basic-request-methods │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IUsersOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── UsersOperations.cs │ │ └── UsersOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-response-multioperation │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── basic-spec-required │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── basic-spec-root │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── component-definitions-combined │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── BasicErrorModel.cs │ │ │ ├── ExtendedErrorModel.cs │ │ │ └── ExtendedErrorModelException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-definitions-local │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── ErrorDetail.cs │ │ │ ├── ErrorInfo.cs │ │ │ ├── ErrorResponse.cs │ │ │ └── ErrorResponseException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-definitions-remote │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── ErrorResponse.cs │ │ │ └── ErrorResponseException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-definitions-url │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── ErrorResponse.cs │ │ │ └── ErrorResponseException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-multiparam │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-additional │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IPetsOperations.cs │ │ ├── Models │ │ │ ├── CatAPTrue.cs │ │ │ ├── Error.cs │ │ │ ├── ErrorException.cs │ │ │ ├── PetAPInProperties.cs │ │ │ ├── PetAPInPropertiesWithAPString.cs │ │ │ ├── PetAPObject.cs │ │ │ ├── PetAPString.cs │ │ │ └── PetAPTrue.cs │ │ ├── PetsOperations.cs │ │ ├── PetsOperationsExtensions.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-grouping │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IParameterGroupingOperations.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ ├── ErrorException.cs │ │ │ ├── FirstParameterGroup.cs │ │ │ ├── ParameterGroupingPostMultiParamGroupsSecondParamGroup.cs │ │ │ ├── ParameterGroupingPostOptionalParameters.cs │ │ │ └── ParameterGroupingPostRequiredParameters.cs │ │ ├── ParameterGroupingOperations.cs │ │ ├── ParameterGroupingOperationsExtensions.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-inbody │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── Workspace.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-localremote │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-remote │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-resourceasarraay │ ├── csharp │ │ ├── ArrayOperations.cs │ │ ├── ArrayOperationsExtensions.cs │ │ ├── DatabricksClient.cs │ │ ├── DictionaryOperations.cs │ │ ├── DictionaryOperationsExtensions.cs │ │ ├── IArrayOperations.cs │ │ ├── IDatabricksClient.cs │ │ ├── IDictionaryOperations.cs │ │ ├── IResourceCollectionOperations.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ ├── ErrorException.cs │ │ │ ├── FlattenedProduct.cs │ │ │ ├── Resource.cs │ │ │ └── ResourceCollection.cs │ │ ├── ResourceCollectionOperations.cs │ │ ├── ResourceCollectionOperationsExtensions.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── component-param-specialproperties │ ├── csharp │ │ ├── ApiVersionDefaultOperations.cs │ │ ├── ApiVersionDefaultOperationsExtensions.cs │ │ ├── ApiVersionLocalOperations.cs │ │ ├── ApiVersionLocalOperationsExtensions.cs │ │ ├── DatabricksClient.cs │ │ ├── HeaderOperations.cs │ │ ├── HeaderOperationsExtensions.cs │ │ ├── IApiVersionDefaultOperations.cs │ │ ├── IApiVersionLocalOperations.cs │ │ ├── IDatabricksClient.cs │ │ ├── IHeaderOperations.cs │ │ ├── IOdataOperations.cs │ │ ├── ISkipUrlEncodingOperations.cs │ │ ├── ISubscriptionInCredentialsOperations.cs │ │ ├── ISubscriptionInMethodOperations.cs │ │ ├── IXMsClientRequestIdOperations.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ ├── ErrorException.cs │ │ │ ├── HeaderCustomNamedRequestIdHeadHeaders.cs │ │ │ ├── HeaderCustomNamedRequestIdHeaders.cs │ │ │ ├── HeaderCustomNamedRequestIdParamGroupingHeaders.cs │ │ │ ├── HeaderCustomNamedRequestIdParamGroupingParameters.cs │ │ │ └── OdataFilter.cs │ │ ├── OdataOperations.cs │ │ ├── OdataOperationsExtensions.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── SkipUrlEncodingOperations.cs │ │ ├── SkipUrlEncodingOperationsExtensions.cs │ │ ├── SubscriptionInCredentialsOperations.cs │ │ ├── SubscriptionInCredentialsOperationsExtensions.cs │ │ ├── SubscriptionInMethodOperations.cs │ │ ├── SubscriptionInMethodOperationsExtensions.cs │ │ ├── XMsClientRequestIdOperations.cs │ │ └── XMsClientRequestIdOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── component-param │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── configuration.json │ ├── csharp-code-adjustment.md │ ├── datamodels-combineschema │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IPetsOperations.cs │ │ ├── Models │ │ │ ├── Cat.cs │ │ │ ├── Dog.cs │ │ │ └── Pet.cs │ │ ├── PetsOperations.cs │ │ ├── PetsOperationsExtensions.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-array │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── WorkspaceItem.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-boolean-quirks │ ├── csharp │ │ ├── BoolModelOperations.cs │ │ ├── BoolModelOperationsExtensions.cs │ │ ├── DatabricksClient.cs │ │ ├── IBoolModelOperations.cs │ │ ├── IDatabricksClient.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ └── ErrorException.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-boolean │ ├── csharp │ │ ├── BoolModelOperations.cs │ │ ├── BoolModelOperationsExtensions.cs │ │ ├── DatabricksClient.cs │ │ ├── IBoolModelOperations.cs │ │ ├── IDatabricksClient.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ └── ErrorException.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── examples │ │ ├── bool_getFalse.json │ │ ├── bool_getNull.json │ │ ├── bool_getTrue.json │ │ ├── bool_putFalse.json │ │ └── bool_putTrue.json │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-byte │ ├── csharp │ │ ├── ByteModelOperations.cs │ │ ├── ByteModelOperationsExtensions.cs │ │ ├── DatabricksClient.cs │ │ ├── IByteModelOperations.cs │ │ ├── IDatabricksClient.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ └── ErrorException.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── examples │ │ ├── byte_getEmpty.json │ │ ├── byte_getInvalid.json │ │ ├── byte_getNonAscii.json │ │ ├── byte_getNull.json │ │ └── byte_putNonAscii.json │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-date │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── DateOperations.cs │ │ ├── DateOperationsExtensions.cs │ │ ├── IDatabricksClient.cs │ │ ├── IDateOperations.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ └── ErrorException.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── examples │ │ ├── date_getMaxDate.json │ │ ├── date_getMinDate.json │ │ ├── date_getNull.json │ │ ├── date_putMaxDate.json │ │ └── date_putMinDate.json │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-datetime │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── DatetimeOperations.cs │ │ ├── DatetimeOperationsExtensions.cs │ │ ├── IDatabricksClient.cs │ │ ├── IDatetimeOperations.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ └── ErrorException.cs │ │ └── SdkInfo_DatabricksClient.cs │ ├── examples │ │ ├── datetime_getLocalNegativeOffsetMinDateTime.json │ │ ├── datetime_getLocalNoOffsetMinDateTime.json │ │ ├── datetime_getLocalPositiveOffsetLowercaseMaxDateTime.json │ │ ├── datetime_getLocalPositiveOffsetUppercaseMaxDateTime.json │ │ ├── datetime_getNull.json │ │ ├── datetime_getUtcLowercaseMaxDateTime.json │ │ ├── datetime_getUtcMinDateTime.json │ │ ├── datetime_getUtcUppercaseMaxDateTime.json │ │ ├── datetime_putLocalNegativeOffsetMinDateTime.json │ │ ├── datetime_putLocalPositiveOffsetMaxDateTime.json │ │ ├── datetime_putUtcMaxDateTime.json │ │ └── datetime_putUtcMinDateTime.json │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-file │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── FilesModel.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-integer │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── BasicErrorModel.cs │ │ │ └── BasicErrorModelException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-nullable │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── BasicErrorModel.cs │ │ │ └── BasicErrorModelException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-object │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── ContactInfo.cs │ │ │ ├── Model.cs │ │ │ ├── Model2.cs │ │ │ ├── Model3.cs │ │ │ └── User.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-string │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── BasicErrorModel.cs │ │ │ └── BasicErrorModelException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-datatypes-unixtime │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ ├── BasicErrorModel.cs │ │ │ └── BasicErrorModelException.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── datamodels-enums │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── examples │ ├── OperationsList.json │ ├── RemoteDefinitions.json │ ├── WorkspaceCreate.json │ ├── WorkspaceCreateWithParameters.json │ ├── WorkspaceDelete.json │ ├── WorkspaceGet.json │ ├── WorkspaceGetParameters.json │ ├── WorkspaceUpdate.json │ ├── WorkspacesListByResourceGroup.json │ └── WorkspacesListBySubscription.json │ ├── extension-ms-azureresource │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── Resource.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-clientflatten │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── Workspace.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-clientname │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── Encryption.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-discriminatorvalue │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── SecureString.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-enum │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── ProvisioningState.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-examples │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-longruningoperation │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-mutability │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── TrackedResource.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-pageable │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── Models │ │ │ └── Page.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── extension-ms-paramlocation │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IWorkspacesOperations.cs │ │ ├── SdkInfo_DatabricksClient.cs │ │ ├── WorkspacesOperations.cs │ │ └── WorkspacesOperationsExtensions.cs │ ├── readme.md │ └── swagger.json │ ├── model-validate │ ├── csharp │ │ ├── DatabricksClient.cs │ │ ├── IDatabricksClient.cs │ │ ├── IOperationOperations.cs │ │ ├── Models │ │ │ ├── Operation.cs │ │ │ ├── OperationTypeObject.cs │ │ │ ├── TypeConstant.cs │ │ │ └── TypeSealedChoice.cs │ │ ├── OperationOperations.cs │ │ ├── OperationOperationsExtensions.cs │ │ └── SdkInfo_DatabricksClient.cs │ └── swagger.json │ ├── provider-aks │ ├── csharp │ │ ├── AgentPoolsOperations.cs │ │ ├── AgentPoolsOperationsExtensions.cs │ │ ├── ContainerServiceClient.cs │ │ ├── IAgentPoolsOperations.cs │ │ ├── IContainerServiceClient.cs │ │ ├── IMaintenanceConfigurationsOperations.cs │ │ ├── IManagedClustersOperations.cs │ │ ├── IOperations.cs │ │ ├── IPrivateEndpointConnectionsOperations.cs │ │ ├── IPrivateLinkResourcesOperations.cs │ │ ├── IResolvePrivateLinkServiceIdOperations.cs │ │ ├── ISnapshotsOperations.cs │ │ ├── MaintenanceConfigurationsOperations.cs │ │ ├── MaintenanceConfigurationsOperationsExtensions.cs │ │ ├── ManagedClustersOperations.cs │ │ ├── ManagedClustersOperationsExtensions.cs │ │ ├── Models │ │ │ ├── AgentPool.cs │ │ │ ├── AgentPoolAvailableVersions.cs │ │ │ ├── AgentPoolAvailableVersionsPropertiesAgentPoolVersionsItem.cs │ │ │ ├── AgentPoolMode.cs │ │ │ ├── AgentPoolType.cs │ │ │ ├── AgentPoolUpgradeProfile.cs │ │ │ ├── AgentPoolUpgradeProfilePropertiesUpgradesItem.cs │ │ │ ├── AgentPoolUpgradeSettings.cs │ │ │ ├── AgentPoolsUpgradeNodeImageVersionHeaders.cs │ │ │ ├── AzureKeyVaultKms.cs │ │ │ ├── Code.cs │ │ │ ├── ConnectionStatus.cs │ │ │ ├── ContainerServiceDiagnosticsProfile.cs │ │ │ ├── ContainerServiceLinuxProfile.cs │ │ │ ├── ContainerServiceMasterProfile.cs │ │ │ ├── ContainerServiceNetworkProfile.cs │ │ │ ├── ContainerServiceSshConfiguration.cs │ │ │ ├── ContainerServiceSshPublicKey.cs │ │ │ ├── ContainerServiceStorageProfileTypes.cs │ │ │ ├── ContainerServiceVMDiagnostics.cs │ │ │ ├── ContainerServiceVMSizeTypes.cs │ │ │ ├── CreatedByType.cs │ │ │ ├── CreationData.cs │ │ │ ├── CredentialResult.cs │ │ │ ├── CredentialResults.cs │ │ │ ├── EndpointDependency.cs │ │ │ ├── EndpointDetail.cs │ │ │ ├── Expander.cs │ │ │ ├── ExtendedLocation.cs │ │ │ ├── ExtendedLocationTypes.cs │ │ │ ├── Format.cs │ │ │ ├── GPUInstanceProfile.cs │ │ │ ├── IpFamily.cs │ │ │ ├── KeyVaultNetworkAccessTypes.cs │ │ │ ├── KubeletConfig.cs │ │ │ ├── KubeletDiskType.cs │ │ │ ├── LicenseType.cs │ │ │ ├── LinuxOSConfig.cs │ │ │ ├── LoadBalancerSku.cs │ │ │ ├── MaintenanceConfiguration.cs │ │ │ ├── ManagedCluster.cs │ │ │ ├── ManagedClusterAADProfile.cs │ │ │ ├── ManagedClusterAPIServerAccessProfile.cs │ │ │ ├── ManagedClusterAccessProfile.cs │ │ │ ├── ManagedClusterAddonProfile.cs │ │ │ ├── ManagedClusterAddonProfileIdentity.cs │ │ │ ├── ManagedClusterAgentPoolProfile.cs │ │ │ ├── ManagedClusterAgentPoolProfileProperties.cs │ │ │ ├── ManagedClusterAutoUpgradeProfile.cs │ │ │ ├── ManagedClusterHTTPProxyConfig.cs │ │ │ ├── ManagedClusterIdentity.cs │ │ │ ├── ManagedClusterLoadBalancerProfile.cs │ │ │ ├── ManagedClusterLoadBalancerProfileManagedOutboundIPs.cs │ │ │ ├── ManagedClusterLoadBalancerProfileOutboundIPPrefixes.cs │ │ │ ├── ManagedClusterLoadBalancerProfileOutboundIPs.cs │ │ │ ├── ManagedClusterManagedOutboundIPProfile.cs │ │ │ ├── ManagedClusterNATGatewayProfile.cs │ │ │ ├── ManagedClusterOIDCIssuerProfile.cs │ │ │ ├── ManagedClusterPodIdentity.cs │ │ │ ├── ManagedClusterPodIdentityException.cs │ │ │ ├── ManagedClusterPodIdentityProfile.cs │ │ │ ├── ManagedClusterPodIdentityProvisioningError.cs │ │ │ ├── ManagedClusterPodIdentityProvisioningErrorBody.cs │ │ │ ├── ManagedClusterPodIdentityProvisioningInfo.cs │ │ │ ├── ManagedClusterPodIdentityProvisioningState.cs │ │ │ ├── ManagedClusterPoolUpgradeProfile.cs │ │ │ ├── ManagedClusterPoolUpgradeProfileUpgradesItem.cs │ │ │ ├── ManagedClusterPropertiesAutoScalerProfile.cs │ │ │ ├── ManagedClusterSKU.cs │ │ │ ├── ManagedClusterSKUName.cs │ │ │ ├── ManagedClusterSKUTier.cs │ │ │ ├── ManagedClusterSecurityProfile.cs │ │ │ ├── ManagedClusterSecurityProfileDefender.cs │ │ │ ├── ManagedClusterSecurityProfileDefenderSecurityMonitoring.cs │ │ │ ├── ManagedClusterServicePrincipalProfile.cs │ │ │ ├── ManagedClusterStorageProfile.cs │ │ │ ├── ManagedClusterStorageProfileBlobCSIDriver.cs │ │ │ ├── ManagedClusterStorageProfileDiskCSIDriver.cs │ │ │ ├── ManagedClusterStorageProfileFileCSIDriver.cs │ │ │ ├── ManagedClusterStorageProfileSnapshotController.cs │ │ │ ├── ManagedClusterUpgradeProfile.cs │ │ │ ├── ManagedClusterWindowsProfile.cs │ │ │ ├── ManagedClustersRotateServiceAccountSigningKeysHeaders.cs │ │ │ ├── ManagedServiceIdentityUserAssignedIdentitiesValue.cs │ │ │ ├── NetworkMode.cs │ │ │ ├── NetworkPlugin.cs │ │ │ ├── NetworkPolicy.cs │ │ │ ├── OSDiskType.cs │ │ │ ├── OSOptionProfile.cs │ │ │ ├── OSOptionProperty.cs │ │ │ ├── OSSKU.cs │ │ │ ├── OSType.cs │ │ │ ├── OperationValue.cs │ │ │ ├── OutboundEnvironmentEndpoint.cs │ │ │ ├── OutboundType.cs │ │ │ ├── Page.cs │ │ │ ├── Page1.cs │ │ │ ├── PowerState.cs │ │ │ ├── PrivateEndpoint.cs │ │ │ ├── PrivateEndpointConnection.cs │ │ │ ├── PrivateEndpointConnectionListResult.cs │ │ │ ├── PrivateEndpointConnectionProvisioningState.cs │ │ │ ├── PrivateLinkResource.cs │ │ │ ├── PrivateLinkResourcesListResult.cs │ │ │ ├── PrivateLinkServiceConnectionState.cs │ │ │ ├── PublicNetworkAccess.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceIdentityType.cs │ │ │ ├── ResourceReference.cs │ │ │ ├── RunCommandRequest.cs │ │ │ ├── RunCommandResult.cs │ │ │ ├── ScaleDownMode.cs │ │ │ ├── ScaleSetEvictionPolicy.cs │ │ │ ├── ScaleSetPriority.cs │ │ │ ├── Snapshot.cs │ │ │ ├── SnapshotType.cs │ │ │ ├── SubResource.cs │ │ │ ├── SysctlConfig.cs │ │ │ ├── SystemData.cs │ │ │ ├── TagsObject.cs │ │ │ ├── TimeInWeek.cs │ │ │ ├── TimeSpan.cs │ │ │ ├── TrackedResource.cs │ │ │ ├── UpgradeChannel.cs │ │ │ ├── UserAssignedIdentity.cs │ │ │ ├── WeekDay.cs │ │ │ ├── WindowsGmsaProfile.cs │ │ │ └── WorkloadRuntime.cs │ │ ├── Operations.cs │ │ ├── OperationsExtensions.cs │ │ ├── PrivateEndpointConnectionsOperations.cs │ │ ├── PrivateEndpointConnectionsOperationsExtensions.cs │ │ ├── PrivateLinkResourcesOperations.cs │ │ ├── PrivateLinkResourcesOperationsExtensions.cs │ │ ├── ResolvePrivateLinkServiceIdOperations.cs │ │ ├── ResolvePrivateLinkServiceIdOperationsExtensions.cs │ │ ├── SdkInfo_ContainerServiceClient.cs │ │ ├── SnapshotsOperations.cs │ │ └── SnapshotsOperationsExtensions.cs │ ├── managedClusters.json │ └── readme.md │ ├── provider-containerRegistry │ ├── Generated │ │ ├── ContainerRegistryManagementClient.cs │ │ ├── IContainerRegistryManagementClient.cs │ │ ├── IOperations.cs │ │ ├── IRegistriesOperations.cs │ │ ├── IReplicationsOperations.cs │ │ ├── IRunsOperations.cs │ │ ├── ITasksOperations.cs │ │ ├── IWebhooksOperations.cs │ │ ├── Models │ │ │ ├── Action.cs │ │ │ ├── Actor.cs │ │ │ ├── AgentProperties.cs │ │ │ ├── Architecture.cs │ │ │ ├── Argument.cs │ │ │ ├── AuthInfo.cs │ │ │ ├── AuthInfoUpdateParameters.cs │ │ │ ├── BaseImageDependency.cs │ │ │ ├── BaseImageDependencyType.cs │ │ │ ├── BaseImageTrigger.cs │ │ │ ├── BaseImageTriggerType.cs │ │ │ ├── BaseImageTriggerUpdateParameters.cs │ │ │ ├── CallbackConfig.cs │ │ │ ├── Credentials.cs │ │ │ ├── CustomRegistryCredentials.cs │ │ │ ├── DefaultAction.cs │ │ │ ├── DockerBuildRequest.cs │ │ │ ├── DockerBuildStep.cs │ │ │ ├── DockerBuildStepUpdateParameters.cs │ │ │ ├── EncodedTaskRunRequest.cs │ │ │ ├── EncodedTaskStep.cs │ │ │ ├── EncodedTaskStepUpdateParameters.cs │ │ │ ├── EventContent.cs │ │ │ ├── EventInfo.cs │ │ │ ├── EventModel.cs │ │ │ ├── EventRequestMessage.cs │ │ │ ├── EventResponseMessage.cs │ │ │ ├── FileTaskRunRequest.cs │ │ │ ├── FileTaskStep.cs │ │ │ ├── FileTaskStepUpdateParameters.cs │ │ │ ├── IPRule.cs │ │ │ ├── IdentityProperties.cs │ │ │ ├── ImageDescriptor.cs │ │ │ ├── ImageUpdateTrigger.cs │ │ │ ├── ImportImageParameters.cs │ │ │ ├── ImportMode.cs │ │ │ ├── ImportSource.cs │ │ │ ├── ImportSourceCredentials.cs │ │ │ ├── NetworkRuleSet.cs │ │ │ ├── OS.cs │ │ │ ├── OperationDefinition.cs │ │ │ ├── OperationDisplayDefinition.cs │ │ │ ├── OperationMetricSpecificationDefinition.cs │ │ │ ├── OperationServiceSpecificationDefinition.cs │ │ │ ├── Page.cs │ │ │ ├── PasswordName.cs │ │ │ ├── PlatformProperties.cs │ │ │ ├── PlatformUpdateParameters.cs │ │ │ ├── Policies.cs │ │ │ ├── PolicyStatus.cs │ │ │ ├── ProvisioningState.cs │ │ │ ├── ProxyResource.cs │ │ │ ├── QuarantinePolicy.cs │ │ │ ├── RegenerateCredentialParameters.cs │ │ │ ├── Registry.cs │ │ │ ├── RegistryListCredentialsResult.cs │ │ │ ├── RegistryNameCheckRequest.cs │ │ │ ├── RegistryNameStatus.cs │ │ │ ├── RegistryPassword.cs │ │ │ ├── RegistryUpdateParameters.cs │ │ │ ├── RegistryUsage.cs │ │ │ ├── RegistryUsageListResult.cs │ │ │ ├── RegistryUsageUnit.cs │ │ │ ├── Replication.cs │ │ │ ├── ReplicationUpdateParameters.cs │ │ │ ├── Request.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceIdentityType.cs │ │ │ ├── RetentionPolicy.cs │ │ │ ├── Run.cs │ │ │ ├── RunFilter.cs │ │ │ ├── RunGetLogResult.cs │ │ │ ├── RunRequest.cs │ │ │ ├── RunStatus.cs │ │ │ ├── RunType.cs │ │ │ ├── RunUpdateParameters.cs │ │ │ ├── SecretObject.cs │ │ │ ├── SecretObjectType.cs │ │ │ ├── SetValue.cs │ │ │ ├── Sku.cs │ │ │ ├── SkuName.cs │ │ │ ├── SkuTier.cs │ │ │ ├── Source.cs │ │ │ ├── SourceControlType.cs │ │ │ ├── SourceProperties.cs │ │ │ ├── SourceRegistryCredentials.cs │ │ │ ├── SourceRegistryLoginMode.cs │ │ │ ├── SourceTrigger.cs │ │ │ ├── SourceTriggerDescriptor.cs │ │ │ ├── SourceTriggerEvent.cs │ │ │ ├── SourceTriggerUpdateParameters.cs │ │ │ ├── SourceUpdateParameters.cs │ │ │ ├── SourceUploadDefinition.cs │ │ │ ├── Status.cs │ │ │ ├── StorageAccountProperties.cs │ │ │ ├── Target.cs │ │ │ ├── Task.cs │ │ │ ├── TaskRunRequest.cs │ │ │ ├── TaskStatus.cs │ │ │ ├── TaskStepProperties.cs │ │ │ ├── TaskStepUpdateParameters.cs │ │ │ ├── TaskUpdateParameters.cs │ │ │ ├── TimerTrigger.cs │ │ │ ├── TimerTriggerUpdateParameters.cs │ │ │ ├── TokenType.cs │ │ │ ├── TriggerProperties.cs │ │ │ ├── TriggerStatus.cs │ │ │ ├── TriggerUpdateParameters.cs │ │ │ ├── TrustPolicy.cs │ │ │ ├── TrustPolicyType.cs │ │ │ ├── UserIdentityProperties.cs │ │ │ ├── Variant.cs │ │ │ ├── VirtualNetworkRule.cs │ │ │ ├── Webhook.cs │ │ │ ├── WebhookAction.cs │ │ │ ├── WebhookCreateParameters.cs │ │ │ ├── WebhookStatus.cs │ │ │ └── WebhookUpdateParameters.cs │ │ ├── Operations.cs │ │ ├── OperationsExtensions.cs │ │ ├── RegistriesOperations.cs │ │ ├── RegistriesOperationsExtensions.cs │ │ ├── ReplicationsOperations.cs │ │ ├── ReplicationsOperationsExtensions.cs │ │ ├── RunsOperations.cs │ │ ├── RunsOperationsExtensions.cs │ │ ├── SdkInfo_ContainerRegistryManagementClient.cs │ │ ├── TasksOperations.cs │ │ ├── TasksOperationsExtensions.cs │ │ ├── WebhooksOperations.cs │ │ └── WebhooksOperationsExtensions.cs │ ├── csharp │ │ ├── ContainerRegistryManagementClient.cs │ │ ├── IContainerRegistryManagementClient.cs │ │ ├── IOperations.cs │ │ ├── IRegistriesOperations.cs │ │ ├── IReplicationsOperations.cs │ │ ├── IRunsOperations.cs │ │ ├── ITasksOperations.cs │ │ ├── IWebhooksOperations.cs │ │ ├── Models │ │ │ ├── Action.cs │ │ │ ├── Actor.cs │ │ │ ├── AgentProperties.cs │ │ │ ├── Architecture.cs │ │ │ ├── Argument.cs │ │ │ ├── AuthInfo.cs │ │ │ ├── AuthInfoUpdateParameters.cs │ │ │ ├── BaseImageDependency.cs │ │ │ ├── BaseImageDependencyType.cs │ │ │ ├── BaseImageTrigger.cs │ │ │ ├── BaseImageTriggerType.cs │ │ │ ├── BaseImageTriggerUpdateParameters.cs │ │ │ ├── CallbackConfig.cs │ │ │ ├── Credentials.cs │ │ │ ├── CustomRegistryCredentials.cs │ │ │ ├── DefaultAction.cs │ │ │ ├── DockerBuildRequest.cs │ │ │ ├── DockerBuildStep.cs │ │ │ ├── DockerBuildStepUpdateParameters.cs │ │ │ ├── EncodedTaskRunRequest.cs │ │ │ ├── EncodedTaskStep.cs │ │ │ ├── EncodedTaskStepUpdateParameters.cs │ │ │ ├── EventContent.cs │ │ │ ├── EventInfo.cs │ │ │ ├── EventModel.cs │ │ │ ├── EventRequestMessage.cs │ │ │ ├── EventResponseMessage.cs │ │ │ ├── FileTaskRunRequest.cs │ │ │ ├── FileTaskStep.cs │ │ │ ├── FileTaskStepUpdateParameters.cs │ │ │ ├── IPRule.cs │ │ │ ├── IdentityProperties.cs │ │ │ ├── ImageDescriptor.cs │ │ │ ├── ImageUpdateTrigger.cs │ │ │ ├── ImportImageParameters.cs │ │ │ ├── ImportMode.cs │ │ │ ├── ImportSource.cs │ │ │ ├── ImportSourceCredentials.cs │ │ │ ├── NetworkRuleSet.cs │ │ │ ├── OS.cs │ │ │ ├── OperationDefinition.cs │ │ │ ├── OperationDisplayDefinition.cs │ │ │ ├── OperationMetricSpecificationDefinition.cs │ │ │ ├── OperationServiceSpecificationDefinition.cs │ │ │ ├── Page.cs │ │ │ ├── PasswordName.cs │ │ │ ├── PlatformProperties.cs │ │ │ ├── PlatformUpdateParameters.cs │ │ │ ├── Policies.cs │ │ │ ├── PolicyStatus.cs │ │ │ ├── ProvisioningState.cs │ │ │ ├── ProxyResource.cs │ │ │ ├── QuarantinePolicy.cs │ │ │ ├── RegenerateCredentialParameters.cs │ │ │ ├── Registry.cs │ │ │ ├── RegistryListCredentialsResult.cs │ │ │ ├── RegistryNameCheckRequest.cs │ │ │ ├── RegistryNameStatus.cs │ │ │ ├── RegistryPassword.cs │ │ │ ├── RegistryUpdateParameters.cs │ │ │ ├── RegistryUsage.cs │ │ │ ├── RegistryUsageListResult.cs │ │ │ ├── RegistryUsageUnit.cs │ │ │ ├── Replication.cs │ │ │ ├── ReplicationUpdateParameters.cs │ │ │ ├── Request.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceIdentityType.cs │ │ │ ├── RetentionPolicy.cs │ │ │ ├── Run.cs │ │ │ ├── RunFilter.cs │ │ │ ├── RunGetLogResult.cs │ │ │ ├── RunRequest.cs │ │ │ ├── RunStatus.cs │ │ │ ├── RunType.cs │ │ │ ├── RunUpdateParameters.cs │ │ │ ├── SecretObject.cs │ │ │ ├── SecretObjectType.cs │ │ │ ├── SetValue.cs │ │ │ ├── Sku.cs │ │ │ ├── SkuName.cs │ │ │ ├── SkuTier.cs │ │ │ ├── Source.cs │ │ │ ├── SourceControlType.cs │ │ │ ├── SourceProperties.cs │ │ │ ├── SourceRegistryCredentials.cs │ │ │ ├── SourceRegistryLoginMode.cs │ │ │ ├── SourceTrigger.cs │ │ │ ├── SourceTriggerDescriptor.cs │ │ │ ├── SourceTriggerEvent.cs │ │ │ ├── SourceTriggerUpdateParameters.cs │ │ │ ├── SourceUpdateParameters.cs │ │ │ ├── SourceUploadDefinition.cs │ │ │ ├── Status.cs │ │ │ ├── StorageAccountProperties.cs │ │ │ ├── Target.cs │ │ │ ├── Task.cs │ │ │ ├── TaskRunRequest.cs │ │ │ ├── TaskStatus.cs │ │ │ ├── TaskStepProperties.cs │ │ │ ├── TaskStepUpdateParameters.cs │ │ │ ├── TaskUpdateParameters.cs │ │ │ ├── TimerTrigger.cs │ │ │ ├── TimerTriggerUpdateParameters.cs │ │ │ ├── TokenType.cs │ │ │ ├── TriggerProperties.cs │ │ │ ├── TriggerStatus.cs │ │ │ ├── TriggerUpdateParameters.cs │ │ │ ├── TrustPolicy.cs │ │ │ ├── TrustPolicyType.cs │ │ │ ├── UserIdentityProperties.cs │ │ │ ├── Variant.cs │ │ │ ├── VirtualNetworkRule.cs │ │ │ ├── Webhook.cs │ │ │ ├── WebhookAction.cs │ │ │ ├── WebhookCreateParameters.cs │ │ │ ├── WebhookStatus.cs │ │ │ └── WebhookUpdateParameters.cs │ │ ├── Operations.cs │ │ ├── OperationsExtensions.cs │ │ ├── RegistriesOperations.cs │ │ ├── RegistriesOperationsExtensions.cs │ │ ├── ReplicationsOperations.cs │ │ ├── ReplicationsOperationsExtensions.cs │ │ ├── RunsOperations.cs │ │ ├── RunsOperationsExtensions.cs │ │ ├── SdkInfo_ContainerRegistryManagementClient.cs │ │ ├── TasksOperations.cs │ │ ├── TasksOperationsExtensions.cs │ │ ├── WebhooksOperations.cs │ │ └── WebhooksOperationsExtensions.cs │ └── readme.md │ └── provider-storage │ ├── csharp │ ├── BlobContainersOperations.cs │ ├── BlobContainersOperationsExtensions.cs │ ├── BlobInventoryPoliciesOperations.cs │ ├── BlobInventoryPoliciesOperationsExtensions.cs │ ├── BlobServicesOperations.cs │ ├── BlobServicesOperationsExtensions.cs │ ├── DeletedAccountsOperations.cs │ ├── DeletedAccountsOperationsExtensions.cs │ ├── EncryptionScopesOperations.cs │ ├── EncryptionScopesOperationsExtensions.cs │ ├── FileServicesOperations.cs │ ├── FileServicesOperationsExtensions.cs │ ├── FileSharesOperations.cs │ ├── FileSharesOperationsExtensions.cs │ ├── IBlobContainersOperations.cs │ ├── IBlobInventoryPoliciesOperations.cs │ ├── IBlobServicesOperations.cs │ ├── IDeletedAccountsOperations.cs │ ├── IEncryptionScopesOperations.cs │ ├── IFileServicesOperations.cs │ ├── IFileSharesOperations.cs │ ├── ILocalUsersOperations.cs │ ├── IManagementPoliciesOperations.cs │ ├── IObjectReplicationPoliciesOperations.cs │ ├── IOperations.cs │ ├── IPrivateEndpointConnectionsOperations.cs │ ├── IPrivateLinkResourcesOperations.cs │ ├── ISkusOperations.cs │ ├── IStorageAccountsOperations.cs │ ├── IStorageManagementClient.cs │ ├── IUsagesOperations.cs │ ├── LocalUsersOperations.cs │ ├── LocalUsersOperationsExtensions.cs │ ├── ManagementPoliciesOperations.cs │ ├── ManagementPoliciesOperationsExtensions.cs │ ├── Models │ │ ├── AccessPolicy.cs │ │ ├── AccessTier.cs │ │ ├── AccountImmutabilityPolicyProperties.cs │ │ ├── AccountImmutabilityPolicyState.cs │ │ ├── AccountSasParameters.cs │ │ ├── AccountStatus.cs │ │ ├── AccountType.cs │ │ ├── Action.cs │ │ ├── ActiveDirectoryProperties.cs │ │ ├── AllowedCopyScope.cs │ │ ├── AllowedMethods.cs │ │ ├── AzureEntityResource.cs │ │ ├── AzureFilesIdentityBasedAuthentication.cs │ │ ├── BlobContainer.cs │ │ ├── BlobContainersCreateOrUpdateImmutabilityPolicyHeaders.cs │ │ ├── BlobContainersDeleteImmutabilityPolicyHeaders.cs │ │ ├── BlobContainersExtendImmutabilityPolicyHeaders.cs │ │ ├── BlobContainersGetImmutabilityPolicyHeaders.cs │ │ ├── BlobContainersLockImmutabilityPolicyHeaders.cs │ │ ├── BlobInventoryPolicy.cs │ │ ├── BlobInventoryPolicyDefinition.cs │ │ ├── BlobInventoryPolicyFilter.cs │ │ ├── BlobInventoryPolicyRule.cs │ │ ├── BlobInventoryPolicySchema.cs │ │ ├── BlobRestoreParameters.cs │ │ ├── BlobRestoreProgressStatus.cs │ │ ├── BlobRestoreRange.cs │ │ ├── BlobRestoreStatus.cs │ │ ├── BlobServiceProperties.cs │ │ ├── Bypass.cs │ │ ├── ChangeFeed.cs │ │ ├── CheckNameAvailabilityResult.cs │ │ ├── CorsRule.cs │ │ ├── CorsRules.cs │ │ ├── CreatedByType.cs │ │ ├── CustomDomain.cs │ │ ├── DateAfterCreation.cs │ │ ├── DateAfterModification.cs │ │ ├── DefaultAction.cs │ │ ├── DefaultSharePermission.cs │ │ ├── DeleteRetentionPolicy.cs │ │ ├── DeletedAccount.cs │ │ ├── DeletedShare.cs │ │ ├── Dimension.cs │ │ ├── DirectoryServiceOptions.cs │ │ ├── DnsEndpointType.cs │ │ ├── EnabledProtocols.cs │ │ ├── Encryption.cs │ │ ├── EncryptionIdentity.cs │ │ ├── EncryptionScope.cs │ │ ├── EncryptionScopeKeyVaultProperties.cs │ │ ├── EncryptionScopeSource.cs │ │ ├── EncryptionScopeState.cs │ │ ├── EncryptionService.cs │ │ ├── EncryptionServices.cs │ │ ├── Endpoints.cs │ │ ├── ErrorResponse.cs │ │ ├── ErrorResponseBody.cs │ │ ├── ErrorResponseException.cs │ │ ├── ExtendedLocation.cs │ │ ├── ExtendedLocationTypes.cs │ │ ├── FileServiceItems.cs │ │ ├── FileServiceProperties.cs │ │ ├── FileShare.cs │ │ ├── FileShareItem.cs │ │ ├── FileSharesLeaseHeaders.cs │ │ ├── Format.cs │ │ ├── GeoReplicationStats.cs │ │ ├── GeoReplicationStatus.cs │ │ ├── HttpProtocol.cs │ │ ├── IPRule.cs │ │ ├── Identity.cs │ │ ├── IdentityType.cs │ │ ├── ImmutabilityPolicy.cs │ │ ├── ImmutabilityPolicyProperties.cs │ │ ├── ImmutabilityPolicyState.cs │ │ ├── ImmutabilityPolicyUpdateType.cs │ │ ├── ImmutableStorageAccount.cs │ │ ├── ImmutableStorageWithVersioning.cs │ │ ├── KeyCreationTime.cs │ │ ├── KeyPermission.cs │ │ ├── KeyPolicy.cs │ │ ├── KeySource.cs │ │ ├── KeyType.cs │ │ ├── KeyVaultProperties.cs │ │ ├── Kind.cs │ │ ├── LargeFileSharesState.cs │ │ ├── LastAccessTimeTrackingPolicy.cs │ │ ├── LeaseContainerRequest.cs │ │ ├── LeaseContainerRequestAction.cs │ │ ├── LeaseContainerResponse.cs │ │ ├── LeaseDuration.cs │ │ ├── LeaseShareAction.cs │ │ ├── LeaseShareRequest.cs │ │ ├── LeaseShareResponse.cs │ │ ├── LeaseState.cs │ │ ├── LeaseStatus.cs │ │ ├── LegalHold.cs │ │ ├── LegalHoldProperties.cs │ │ ├── ListAccountSasResponse.cs │ │ ├── ListContainerItem.cs │ │ ├── ListContainersInclude.cs │ │ ├── ListKeyExpand.cs │ │ ├── ListServiceSasResponse.cs │ │ ├── LocalUser.cs │ │ ├── LocalUserKeys.cs │ │ ├── LocalUserRegeneratePasswordResult.cs │ │ ├── ManagementPolicy.cs │ │ ├── ManagementPolicyAction.cs │ │ ├── ManagementPolicyBaseBlob.cs │ │ ├── ManagementPolicyDefinition.cs │ │ ├── ManagementPolicyFilter.cs │ │ ├── ManagementPolicyRule.cs │ │ ├── ManagementPolicySchema.cs │ │ ├── ManagementPolicySnapShot.cs │ │ ├── ManagementPolicyVersion.cs │ │ ├── MetricSpecification.cs │ │ ├── MigrationState.cs │ │ ├── MinimumTlsVersion.cs │ │ ├── Multichannel.cs │ │ ├── Name.cs │ │ ├── NetworkRuleSet.cs │ │ ├── ObjectReplicationPolicy.cs │ │ ├── ObjectReplicationPolicyFilter.cs │ │ ├── ObjectReplicationPolicyRule.cs │ │ ├── ObjectType.cs │ │ ├── Operation.cs │ │ ├── OperationDisplay.cs │ │ ├── Page.cs │ │ ├── Page1.cs │ │ ├── PermissionScope.cs │ │ ├── Permissions.cs │ │ ├── PrivateEndpoint.cs │ │ ├── PrivateEndpointConnection.cs │ │ ├── PrivateEndpointConnectionProvisioningState.cs │ │ ├── PrivateEndpointServiceConnectionStatus.cs │ │ ├── PrivateLinkResource.cs │ │ ├── PrivateLinkResourceListResult.cs │ │ ├── PrivateLinkServiceConnectionState.cs │ │ ├── ProtectedAppendWritesHistory.cs │ │ ├── ProtocolSettings.cs │ │ ├── ProvisioningState.cs │ │ ├── ProxyResource.cs │ │ ├── PublicAccess.cs │ │ ├── PublicNetworkAccess.cs │ │ ├── Reason.cs │ │ ├── ReasonCode.cs │ │ ├── Resource.cs │ │ ├── ResourceAccessRule.cs │ │ ├── RestorePolicyProperties.cs │ │ ├── Restriction.cs │ │ ├── RootSquashType.cs │ │ ├── RoutingChoice.cs │ │ ├── RoutingPreference.cs │ │ ├── SKUCapability.cs │ │ ├── SasPolicy.cs │ │ ├── Schedule.cs │ │ ├── ServiceSasParameters.cs │ │ ├── ServiceSpecification.cs │ │ ├── Services.cs │ │ ├── ShareAccessTier.cs │ │ ├── SignedIdentifier.cs │ │ ├── SignedResource.cs │ │ ├── SignedResourceTypes.cs │ │ ├── Sku.cs │ │ ├── SkuConversionStatus.cs │ │ ├── SkuInformation.cs │ │ ├── SkuName.cs │ │ ├── SkuTier.cs │ │ ├── SmbSetting.cs │ │ ├── SshPublicKey.cs │ │ ├── State.cs │ │ ├── StorageAccount.cs │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ ├── StorageAccountCreateParameters.cs │ │ ├── StorageAccountExpand.cs │ │ ├── StorageAccountInternetEndpoints.cs │ │ ├── StorageAccountKey.cs │ │ ├── StorageAccountListKeysResult.cs │ │ ├── StorageAccountMicrosoftEndpoints.cs │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ ├── StorageAccountSkuConversionStatus.cs │ │ ├── StorageAccountUpdateParameters.cs │ │ ├── SystemData.cs │ │ ├── TagFilter.cs │ │ ├── TagProperty.cs │ │ ├── TrackedResource.cs │ │ ├── UpdateHistoryProperty.cs │ │ ├── Usage.cs │ │ ├── UsageName.cs │ │ ├── UsageUnit.cs │ │ ├── UserAssignedIdentity.cs │ │ └── VirtualNetworkRule.cs │ ├── ObjectReplicationPoliciesOperations.cs │ ├── ObjectReplicationPoliciesOperationsExtensions.cs │ ├── Operations.cs │ ├── OperationsExtensions.cs │ ├── PrivateEndpointConnectionsOperations.cs │ ├── PrivateEndpointConnectionsOperationsExtensions.cs │ ├── PrivateLinkResourcesOperations.cs │ ├── PrivateLinkResourcesOperationsExtensions.cs │ ├── SdkInfo_StorageManagementClient.cs │ ├── SkusOperations.cs │ ├── SkusOperationsExtensions.cs │ ├── StorageAccountsOperations.cs │ ├── StorageAccountsOperationsExtensions.cs │ ├── StorageManagementClient.cs │ ├── UsagesOperations.cs │ └── UsagesOperationsExtensions.cs │ └── readme.md ├── tests ├── azure-parameter-grouping │ └── test │ │ ├── Invoke-ParameterGroupingMultiParamGroup.Tests.ps1 │ │ ├── Invoke-ParameterGroupingOptional.Tests.ps1 │ │ ├── Invoke-ParameterGroupingRequired.Tests.ps1 │ │ ├── Invoke-ParameterGroupingSharedParameterGroupObject.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── azure-report │ └── test │ │ ├── Get-Report.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── azure-resource-x │ └── test │ │ ├── Get-Array.Tests.ps1 │ │ ├── Get-Dictionary.Tests.ps1 │ │ ├── Get-ResourceCollection.Tests.ps1 │ │ ├── Set-Array.Tests.ps1 │ │ ├── Set-Dictionary.Tests.ps1 │ │ ├── Set-ResourceCollection.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── azure-resource │ └── test │ │ ├── Get-Array.Tests.ps1 │ │ ├── Get-Dictionary.Tests.ps1 │ │ ├── Get-ResourceCollection.Tests.ps1 │ │ ├── Set-Array.Tests.ps1 │ │ ├── Set-Dictionary.Tests.ps1 │ │ ├── Set-ResourceCollection.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── azure-special-properties │ └── test │ │ ├── Get-ApiVersionDefaultMethodGlobalNotProvidedValid.Tests.ps1 │ │ ├── Get-ApiVersionDefaultMethodGlobalValid.Tests.ps1 │ │ ├── Get-ApiVersionDefaultPathGlobalValid.Tests.ps1 │ │ ├── Get-ApiVersionDefaultSwaggerGlobalValid.Tests.ps1 │ │ ├── Get-ApiVersionLocalMethodLocalNull.Tests.ps1 │ │ ├── Get-ApiVersionLocalMethodLocalValid.Tests.ps1 │ │ ├── Get-ApiVersionLocalPathLocalValid.Tests.ps1 │ │ ├── Get-ApiVersionLocalSwaggerLocalValid.Tests.ps1 │ │ ├── Get-Odata.Tests.ps1 │ │ ├── Get-SkipUrlEncodingMethodPathValid.Tests.ps1 │ │ ├── Get-SkipUrlEncodingMethodQueryNull.Tests.ps1 │ │ ├── Get-SkipUrlEncodingMethodQueryValid.Tests.ps1 │ │ ├── Get-SkipUrlEncodingPathQueryValid.Tests.ps1 │ │ ├── Get-SkipUrlEncodingPathValid.Tests.ps1 │ │ ├── Get-SkipUrlEncodingSwaggerPathValid.Tests.ps1 │ │ ├── Get-SkipUrlEncodingSwaggerQueryValid.Tests.ps1 │ │ ├── Get-XmClientRequestIdParam.Tests.ps1 │ │ ├── Get-XmsClientRequestId.Tests.ps1 │ │ ├── Invoke-CustomHeaderNamedRequestId.Tests.ps1 │ │ ├── Invoke-CustomHeaderNamedRequestIdHead.Tests.ps1 │ │ ├── Invoke-CustomHeaderNamedRequestIdParamGrouping.Tests.ps1 │ │ ├── Invoke-SubscriptionInCredentialsMethodGlobalNotProvidedValid.Tests.ps1 │ │ ├── Invoke-SubscriptionInCredentialsMethodGlobalNull.Tests.ps1 │ │ ├── Invoke-SubscriptionInCredentialsMethodGlobalValid.Tests.ps1 │ │ ├── Invoke-SubscriptionInCredentialsPathGlobalValid.Tests.ps1 │ │ ├── Invoke-SubscriptionInCredentialsSwaggerGlobalValid.Tests.ps1 │ │ ├── Invoke-SubscriptionInMethodLocalNull.Tests.ps1 │ │ ├── Invoke-SubscriptionInMethodLocalValid.Tests.ps1 │ │ ├── Invoke-SubscriptionInMethodPathLocalValid.Tests.ps1 │ │ ├── Invoke-SubscriptionInMethodSwaggerLocalValid.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-array │ └── test │ │ ├── Get-ArrayBase64Url.Tests.ps1 │ │ ├── Get-ArrayBooleanInvalidNull.Tests.ps1 │ │ ├── Get-ArrayBooleanInvalidString.Tests.ps1 │ │ ├── Get-ArrayBooleanTfft.Tests.ps1 │ │ ├── Get-ArrayByteInvalidNull.Tests.ps1 │ │ ├── Get-ArrayByteValid.Tests.ps1 │ │ ├── Get-ArrayComplexEmpty.Tests.ps1 │ │ ├── Get-ArrayComplexItemEmpty.Tests.ps1 │ │ ├── Get-ArrayComplexItemNull.Tests.ps1 │ │ ├── Get-ArrayComplexNull.Tests.ps1 │ │ ├── Get-ArrayComplexValid.Tests.ps1 │ │ ├── Get-ArrayDateInvalidChar.Tests.ps1 │ │ ├── Get-ArrayDateInvalidNull.Tests.ps1 │ │ ├── Get-ArrayDateTimeInvalidChar.Tests.ps1 │ │ ├── Get-ArrayDateTimeInvalidNull.Tests.ps1 │ │ ├── Get-ArrayDateTimeRfc1123Valid.Tests.ps1 │ │ ├── Get-ArrayDateTimeValid.Tests.ps1 │ │ ├── Get-ArrayDateValid.Tests.ps1 │ │ ├── Get-ArrayDictionaryEmpty.Tests.ps1 │ │ ├── Get-ArrayDictionaryItemEmpty.Tests.ps1 │ │ ├── Get-ArrayDictionaryItemNull.Tests.ps1 │ │ ├── Get-ArrayDictionaryNull.Tests.ps1 │ │ ├── Get-ArrayDictionaryValid.Tests.ps1 │ │ ├── Get-ArrayDoubleInvalidNull.Tests.ps1 │ │ ├── Get-ArrayDoubleInvalidString.Tests.ps1 │ │ ├── Get-ArrayDoubleValid.Tests.ps1 │ │ ├── Get-ArrayDurationValid.Tests.ps1 │ │ ├── Get-ArrayEmpty.Tests.ps1 │ │ ├── Get-ArrayEnumValid.Tests.ps1 │ │ ├── Get-ArrayFloatInvalidNull.Tests.ps1 │ │ ├── Get-ArrayFloatInvalidString.Tests.ps1 │ │ ├── Get-ArrayFloatValid.Tests.ps1 │ │ ├── Get-ArrayIntInvalidNull.Tests.ps1 │ │ ├── Get-ArrayIntInvalidString.Tests.ps1 │ │ ├── Get-ArrayIntegerValid.Tests.ps1 │ │ ├── Get-ArrayInvalid.Tests.ps1 │ │ ├── Get-ArrayItemEmpty.Tests.ps1 │ │ ├── Get-ArrayItemNull.Tests.ps1 │ │ ├── Get-ArrayLongInvalidNull.Tests.ps1 │ │ ├── Get-ArrayLongInvalidString.Tests.ps1 │ │ ├── Get-ArrayLongValid.Tests.ps1 │ │ ├── Get-ArrayNull.Tests.ps1 │ │ ├── Get-ArrayString.Tests.ps1 │ │ ├── Get-ArrayStringEnumValid.Tests.ps1 │ │ ├── Get-ArrayStringValid.Tests.ps1 │ │ ├── Get-ArrayUuidInvalidChar.Tests.ps1 │ │ ├── Get-ArrayUuidValid.Tests.ps1 │ │ ├── Get-ArrayValid.Tests.ps1 │ │ ├── Set-ArrayBooleanTfft.Tests.ps1 │ │ ├── Set-ArrayByteValid.Tests.ps1 │ │ ├── Set-ArrayComplexValid.Tests.ps1 │ │ ├── Set-ArrayDateTimeRfc1123Valid.Tests.ps1 │ │ ├── Set-ArrayDateTimeValid.Tests.ps1 │ │ ├── Set-ArrayDateValid.Tests.ps1 │ │ ├── Set-ArrayDictionaryValid.Tests.ps1 │ │ ├── Set-ArrayDoubleValid.Tests.ps1 │ │ ├── Set-ArrayDurationValid.Tests.ps1 │ │ ├── Set-ArrayEmpty.Tests.ps1 │ │ ├── Set-ArrayEnumValid.Tests.ps1 │ │ ├── Set-ArrayFloatValid.Tests.ps1 │ │ ├── Set-ArrayIntegerValid.Tests.ps1 │ │ ├── Set-ArrayLongValid.Tests.ps1 │ │ ├── Set-ArrayStringEnumValid.Tests.ps1 │ │ ├── Set-ArrayStringValid.Tests.ps1 │ │ ├── Set-ArrayUuidValid.Tests.ps1 │ │ ├── Set-ArrayValid.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-boolean │ └── test │ │ ├── Get-BoolFalse.Tests.ps1 │ │ ├── Get-BoolInvalid.Tests.ps1 │ │ ├── Get-BoolNull.Tests.ps1 │ │ ├── Get-BoolTrue.Tests.ps1 │ │ ├── Set-BoolFalse.Tests.ps1 │ │ ├── Set-BoolTrue.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-byte │ └── test │ │ ├── Get-ByteEmpty.Tests.ps1 │ │ ├── Get-ByteInvalid.Tests.ps1 │ │ ├── Get-ByteNonAscii.Tests.ps1 │ │ ├── Get-ByteNull.Tests.ps1 │ │ ├── Set-ByteNonAscii.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-complex │ └── test │ │ ├── Get-ArrayEmpty.Recording.json │ │ ├── Get-ArrayEmpty.Tests.ps1 │ │ ├── Get-ArrayNotProvided.Recording.json │ │ ├── Get-ArrayNotProvided.Tests.ps1 │ │ ├── Get-ArrayValid.Recording.json │ │ ├── Get-ArrayValid.Tests.ps1 │ │ ├── Get-BasicEmpty.Recording.json │ │ ├── Get-BasicEmpty.Tests.ps1 │ │ ├── Get-BasicInvalid.Recording.json │ │ ├── Get-BasicInvalid.Tests.ps1 │ │ ├── Get-BasicNotProvided.Recording.json │ │ ├── Get-BasicNotProvided.Tests.ps1 │ │ ├── Get-BasicNull.Recording.json │ │ ├── Get-BasicNull.Tests.ps1 │ │ ├── Get-BasicValid.Recording.json │ │ ├── Get-BasicValid.Tests.ps1 │ │ ├── Get-DictionaryEmpty.Recording.json │ │ ├── Get-DictionaryEmpty.Tests.ps1 │ │ ├── Get-DictionaryNotProvided.Recording.json │ │ ├── Get-DictionaryNotProvided.Tests.ps1 │ │ ├── Get-DictionaryNull.Recording.json │ │ ├── Get-DictionaryNull.Tests.ps1 │ │ ├── Get-DictionaryValid.Recording.json │ │ ├── Get-DictionaryValid.Tests.ps1 │ │ ├── Get-FlattencomplexValid.Tests.ps1 │ │ ├── Get-InheritanceValid.Recording.json │ │ ├── Get-InheritanceValid.Tests.ps1 │ │ ├── Get-PolymorphicrecursiveValid.Tests.ps1 │ │ ├── Get-PolymorphismComplicated.Tests.ps1 │ │ ├── Get-PolymorphismComposed.Tests.ps1 │ │ ├── Get-PolymorphismComposedWithoutDiscriminator.Tests.ps1 │ │ ├── Get-PolymorphismDotSyntax.Tests.ps1 │ │ ├── Get-PolymorphismValid.Tests.ps1 │ │ ├── Get-PrimitiveBool.Recording.json │ │ ├── Get-PrimitiveBool.Tests.ps1 │ │ ├── Get-PrimitiveByte.Tests.ps1 │ │ ├── Get-PrimitiveDate.Tests.ps1 │ │ ├── Get-PrimitiveDateTime.Tests.ps1 │ │ ├── Get-PrimitiveDateTimeRfc1123.Tests.ps1 │ │ ├── Get-PrimitiveDouble.Tests.ps1 │ │ ├── Get-PrimitiveDuration.Tests.ps1 │ │ ├── Get-PrimitiveFloat.Tests.ps1 │ │ ├── Get-PrimitiveInt.Tests.ps1 │ │ ├── Get-PrimitiveLong.Tests.ps1 │ │ ├── Get-PrimitiveString.Tests.ps1 │ │ ├── Get-ReadonlypropertyValid.Tests.ps1 │ │ ├── Set-ArrayEmpty.Tests.ps1 │ │ ├── Set-ArrayValid.Tests.ps1 │ │ ├── Set-BasicValid.Tests.ps1 │ │ ├── Set-DictionaryEmpty.Tests.ps1 │ │ ├── Set-DictionaryValid.Tests.ps1 │ │ ├── Set-InheritanceValid.Tests.ps1 │ │ ├── Set-PolymorphicrecursiveValid.Tests.ps1 │ │ ├── Set-PolymorphismComplicated.Tests.ps1 │ │ ├── Set-PolymorphismMissingDiscriminator.Tests.ps1 │ │ ├── Set-PolymorphismValid.Tests.ps1 │ │ ├── Set-PolymorphismValidMissingRequired.Tests.ps1 │ │ ├── Set-PrimitiveBool.Tests.ps1 │ │ ├── Set-PrimitiveByte.Tests.ps1 │ │ ├── Set-PrimitiveDate.Tests.ps1 │ │ ├── Set-PrimitiveDateTime.Tests.ps1 │ │ ├── Set-PrimitiveDateTimeRfc1123.Tests.ps1 │ │ ├── Set-PrimitiveDouble.Tests.ps1 │ │ ├── Set-PrimitiveDuration.Tests.ps1 │ │ ├── Set-PrimitiveFloat.Tests.ps1 │ │ ├── Set-PrimitiveInt.Tests.ps1 │ │ ├── Set-PrimitiveLong.Tests.ps1 │ │ ├── Set-PrimitiveString.Tests.ps1 │ │ ├── Set-ReadonlypropertyValid.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── localEnv.json │ │ ├── readme.md │ │ └── utils.ps1 ├── body-date │ └── test │ │ ├── Get-DateInvalidDate.Tests.ps1 │ │ ├── Get-DateMaxDate.Tests.ps1 │ │ ├── Get-DateMinDate.Tests.ps1 │ │ ├── Get-DateNull.Tests.ps1 │ │ ├── Get-DateOverflowDate.Tests.ps1 │ │ ├── Get-DateUnderflowDate.Tests.ps1 │ │ ├── Set-DateMaxDate.Tests.ps1 │ │ ├── Set-DateMinDate.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-datetime-rfc1123 │ └── test │ │ ├── Get-Datetimerfc1123Invalid.Tests.ps1 │ │ ├── Get-Datetimerfc1123Null.Tests.ps1 │ │ ├── Get-Datetimerfc1123Overflow.Tests.ps1 │ │ ├── Get-Datetimerfc1123Underflow.Tests.ps1 │ │ ├── Get-Datetimerfc1123UtcLowercaseMaxDateTime.Tests.ps1 │ │ ├── Get-Datetimerfc1123UtcMinDateTime.Tests.ps1 │ │ ├── Get-Datetimerfc1123UtcUppercaseMaxDateTime.Tests.ps1 │ │ ├── Set-Datetimerfc1123UtcMaxDateTime.Tests.ps1 │ │ ├── Set-Datetimerfc1123UtcMinDateTime.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-datetime │ └── test │ │ ├── Get-DatetimeInvalid.Tests.ps1 │ │ ├── Get-DatetimeLocalNegativeOffsetLowercaseMaxDateTime.Tests.ps1 │ │ ├── Get-DatetimeLocalNegativeOffsetMinDateTime.Tests.ps1 │ │ ├── Get-DatetimeLocalNegativeOffsetUppercaseMaxDateTime.Tests.ps1 │ │ ├── Get-DatetimeLocalPositiveOffsetLowercaseMaxDateTime.Tests.ps1 │ │ ├── Get-DatetimeLocalPositiveOffsetMinDateTime.Tests.ps1 │ │ ├── Get-DatetimeLocalPositiveOffsetUppercaseMaxDateTime.Tests.ps1 │ │ ├── Get-DatetimeNull.Tests.ps1 │ │ ├── Get-DatetimeOverflow.Tests.ps1 │ │ ├── Get-DatetimeUnderflow.Tests.ps1 │ │ ├── Get-DatetimeUtcLowercaseMaxDateTime.Tests.ps1 │ │ ├── Get-DatetimeUtcMinDateTime.Tests.ps1 │ │ ├── Get-DatetimeUtcUppercaseMaxDateTime.Tests.ps1 │ │ ├── Set-DatetimeLocalNegativeOffsetMaxDateTime.Tests.ps1 │ │ ├── Set-DatetimeLocalNegativeOffsetMinDateTime.Tests.ps1 │ │ ├── Set-DatetimeLocalPositiveOffsetMaxDateTime.Tests.ps1 │ │ ├── Set-DatetimeLocalPositiveOffsetMinDateTime.Tests.ps1 │ │ ├── Set-DatetimeUtcMaxDateTime.Tests.ps1 │ │ ├── Set-DatetimeUtcMinDateTime.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-dictionary │ └── test │ │ ├── Get-DictionaryArrayEmpty.Tests.ps1 │ │ ├── Get-DictionaryArrayItemEmpty.Tests.ps1 │ │ ├── Get-DictionaryArrayItemNull.Tests.ps1 │ │ ├── Get-DictionaryArrayNull.Tests.ps1 │ │ ├── Get-DictionaryArrayValid.Tests.ps1 │ │ ├── Get-DictionaryBase64Url.Tests.ps1 │ │ ├── Get-DictionaryBooleanInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryBooleanInvalidString.Tests.ps1 │ │ ├── Get-DictionaryBooleanTfft.Tests.ps1 │ │ ├── Get-DictionaryByteInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryByteValid.Tests.ps1 │ │ ├── Get-DictionaryComplexEmpty.Tests.ps1 │ │ ├── Get-DictionaryComplexItemEmpty.Tests.ps1 │ │ ├── Get-DictionaryComplexItemNull.Tests.ps1 │ │ ├── Get-DictionaryComplexNull.Tests.ps1 │ │ ├── Get-DictionaryComplexValid.Tests.ps1 │ │ ├── Get-DictionaryDateInvalidChar.Tests.ps1 │ │ ├── Get-DictionaryDateInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryDateTimeInvalidChar.Tests.ps1 │ │ ├── Get-DictionaryDateTimeInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryDateTimeRfc1123Valid.Tests.ps1 │ │ ├── Get-DictionaryDateTimeValid.Tests.ps1 │ │ ├── Get-DictionaryDateValid.Tests.ps1 │ │ ├── Get-DictionaryDoubleInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryDoubleInvalidString.Tests.ps1 │ │ ├── Get-DictionaryDoubleValid.Tests.ps1 │ │ ├── Get-DictionaryDurationValid.Tests.ps1 │ │ ├── Get-DictionaryEmpty.Tests.ps1 │ │ ├── Get-DictionaryEmptyStringKey.Tests.ps1 │ │ ├── Get-DictionaryFloatInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryFloatInvalidString.Tests.ps1 │ │ ├── Get-DictionaryFloatValid.Tests.ps1 │ │ ├── Get-DictionaryIntInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryIntInvalidString.Tests.ps1 │ │ ├── Get-DictionaryIntegerValid.Tests.ps1 │ │ ├── Get-DictionaryInvalid.Tests.ps1 │ │ ├── Get-DictionaryItemEmpty.Tests.ps1 │ │ ├── Get-DictionaryItemNull.Tests.ps1 │ │ ├── Get-DictionaryLongInvalidNull.Tests.ps1 │ │ ├── Get-DictionaryLongInvalidString.Tests.ps1 │ │ ├── Get-DictionaryLongValid.Tests.ps1 │ │ ├── Get-DictionaryNull.Tests.ps1 │ │ ├── Get-DictionaryNullKey.Tests.ps1 │ │ ├── Get-DictionaryNullValue.Tests.ps1 │ │ ├── Get-DictionaryString.Tests.ps1 │ │ ├── Get-DictionaryStringValid.Tests.ps1 │ │ ├── Get-DictionaryValid.Tests.ps1 │ │ ├── Set-DictionaryArrayValid.Tests.ps1 │ │ ├── Set-DictionaryBooleanTfft.Tests.ps1 │ │ ├── Set-DictionaryByteValid.Tests.ps1 │ │ ├── Set-DictionaryComplexValid.Tests.ps1 │ │ ├── Set-DictionaryDateTimeRfc1123Valid.Tests.ps1 │ │ ├── Set-DictionaryDateTimeValid.Tests.ps1 │ │ ├── Set-DictionaryDateValid.Tests.ps1 │ │ ├── Set-DictionaryDoubleValid.Tests.ps1 │ │ ├── Set-DictionaryDurationValid.Tests.ps1 │ │ ├── Set-DictionaryEmpty.Tests.ps1 │ │ ├── Set-DictionaryFloatValid.Tests.ps1 │ │ ├── Set-DictionaryIntegerValid.Tests.ps1 │ │ ├── Set-DictionaryLongValid.Tests.ps1 │ │ ├── Set-DictionaryStringValid.Tests.ps1 │ │ ├── Set-DictionaryValid.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-duration │ └── test │ │ ├── Get-DurationInvalid.Tests.ps1 │ │ ├── Get-DurationNull.Tests.ps1 │ │ ├── Get-DurationPositiveDuration.Tests.ps1 │ │ ├── Set-DurationPositiveDuration.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-file │ └── test │ │ ├── Get-File.Tests.ps1 │ │ ├── Get-FileEmptyFile.Tests.ps1 │ │ ├── Get-FileLarge.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-integer │ └── test │ │ ├── Get-IntInvalid.Tests.ps1 │ │ ├── Get-IntInvalidUnixTime.Tests.ps1 │ │ ├── Get-IntNull.Tests.ps1 │ │ ├── Get-IntNullUnixTime.Tests.ps1 │ │ ├── Get-IntOverflowInt32.Tests.ps1 │ │ ├── Get-IntOverflowInt64.Tests.ps1 │ │ ├── Get-IntUnderflowInt32.Tests.ps1 │ │ ├── Get-IntUnderflowInt64.Tests.ps1 │ │ ├── Get-IntUnixTime.Tests.ps1 │ │ ├── Set-IntMax32.Tests.ps1 │ │ ├── Set-IntMax64.Tests.ps1 │ │ ├── Set-IntMin32.Tests.ps1 │ │ ├── Set-IntMin64.Tests.ps1 │ │ ├── Set-IntUnixTimeDate.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-number │ └── test │ │ ├── Get-NumberBigDecimal.Tests.ps1 │ │ ├── Get-NumberBigDecimalNegativeDecimal.Tests.ps1 │ │ ├── Get-NumberBigDecimalPositiveDecimal.Tests.ps1 │ │ ├── Get-NumberBigDouble.Tests.ps1 │ │ ├── Get-NumberBigDoubleNegativeDecimal.Tests.ps1 │ │ ├── Get-NumberBigDoublePositiveDecimal.Tests.ps1 │ │ ├── Get-NumberBigFloat.Tests.ps1 │ │ ├── Get-NumberInvalidDecimal.Tests.ps1 │ │ ├── Get-NumberInvalidDouble.Tests.ps1 │ │ ├── Get-NumberInvalidFloat.Tests.ps1 │ │ ├── Get-NumberNull.Tests.ps1 │ │ ├── Get-NumberSmallDecimal.Tests.ps1 │ │ ├── Get-NumberSmallDouble.Tests.ps1 │ │ ├── Get-NumberSmallFloat.Tests.ps1 │ │ ├── Set-NumberBigDecimal.Tests.ps1 │ │ ├── Set-NumberBigDecimalNegativeDecimal.Tests.ps1 │ │ ├── Set-NumberBigDecimalPositiveDecimal.Tests.ps1 │ │ ├── Set-NumberBigDouble.Tests.ps1 │ │ ├── Set-NumberBigDoubleNegativeDecimal.Tests.ps1 │ │ ├── Set-NumberBigDoublePositiveDecimal.Tests.ps1 │ │ ├── Set-NumberBigFloat.Tests.ps1 │ │ ├── Set-NumberSmallDecimal.Tests.ps1 │ │ ├── Set-NumberSmallDouble.Tests.ps1 │ │ ├── Set-NumberSmallFloat.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── body-string │ └── test │ │ ├── Get-EnumNotExpandable.Tests.ps1 │ │ ├── Get-EnumReferenced.Tests.ps1 │ │ ├── Get-EnumReferencedConstant.Tests.ps1 │ │ ├── Get-StringBase64Encoded.Tests.ps1 │ │ ├── Get-StringBase64UrlEncoded.Tests.ps1 │ │ ├── Get-StringEmpty.Tests.ps1 │ │ ├── Get-StringMbc.Tests.ps1 │ │ ├── Get-StringNotProvided.Tests.ps1 │ │ ├── Get-StringNull.Tests.ps1 │ │ ├── Get-StringNullBase64UrlEncoded.Tests.ps1 │ │ ├── Get-StringWhitespace.Tests.ps1 │ │ ├── Set-EnumNotExpandable.Tests.ps1 │ │ ├── Set-EnumReferenced.Tests.ps1 │ │ ├── Set-EnumReferencedConstant.Tests.ps1 │ │ ├── Set-StringBase64UrlEncoded.Tests.ps1 │ │ ├── Set-StringEmpty.Tests.ps1 │ │ ├── Set-StringMbc.Tests.ps1 │ │ ├── Set-StringNull.Tests.ps1 │ │ ├── Set-StringWhitespace.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── complex-model │ └── test │ │ ├── Get-Redis.Tests.ps1 │ │ ├── New-Redis.Tests.ps1 │ │ ├── Set-Redis.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── custom-baseUrl-more-options │ └── test │ │ ├── Get-PathEmpty.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── custom-baseUrl │ └── test │ │ ├── Get-PathEmpty.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── extensible-enums-swagger │ └── test │ │ ├── Add-Pet.Tests.ps1 │ │ ├── Get-Pet.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── head-exceptions │ └── test │ │ ├── Invoke-Head200HeadException.Tests.ps1 │ │ ├── Invoke-Head204HeadException.Tests.ps1 │ │ ├── Invoke-Head404HeadException.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── head │ └── test │ │ ├── Invoke-Head200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Head204HttpSuccess.Tests.ps1 │ │ ├── Invoke-Head404HttpSuccess.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── httpInfrastructure │ └── test │ │ ├── Get-HttpFailureEmptyError.Tests.ps1 │ │ ├── Get-HttpFailureNoModelEmpty.Tests.ps1 │ │ ├── Get-HttpFailureNoModelError.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultModelA200None.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultModelA200Valid.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultModelA400None.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultModelA400Valid.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultNone200Invalid.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultNone200None.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultNone400Invalid.Tests.ps1 │ │ ├── Get-MultipleResponseDefaultNone400None.Tests.ps1 │ │ ├── Invoke-DefaultMultipleResponse.Tests.ps1 │ │ ├── Invoke-Delete200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Delete202HttpSuccess.Tests.ps1 │ │ ├── Invoke-Delete204HttpSuccess.Tests.ps1 │ │ ├── Invoke-Delete307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Delete400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Delete407HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Delete417HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Delete503HttpRetry.Tests.ps1 │ │ ├── Invoke-Delete505HttpServerFailure.Tests.ps1 │ │ ├── Invoke-Get200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Get300HttpRedirect.Tests.ps1 │ │ ├── Invoke-Get301HttpRedirect.Tests.ps1 │ │ ├── Invoke-Get302HttpRedirect.Tests.ps1 │ │ ├── Invoke-Get307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Get400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Get402HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Get403HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Get411HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Get412HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Get416HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Get501HttpServerFailure.Tests.ps1 │ │ ├── Invoke-Get502HttpRetry.Tests.ps1 │ │ ├── Invoke-Head200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Head204HttpSuccess.Tests.ps1 │ │ ├── Invoke-Head300HttpRedirect.Tests.ps1 │ │ ├── Invoke-Head301HttpRedirect.Tests.ps1 │ │ ├── Invoke-Head302HttpRedirect.Tests.ps1 │ │ ├── Invoke-Head307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Head400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Head401HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Head404HttpSuccess.Tests.ps1 │ │ ├── Invoke-Head408HttpRetry.Tests.ps1 │ │ ├── Invoke-Head410HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Head429HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Head501HttpServerFailure.Tests.ps1 │ │ ├── Invoke-ModelMultipleResponse.Tests.ps1 │ │ ├── Invoke-Options200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Options307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Options400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Options403HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Options412HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Options502HttpRetry.Tests.ps1 │ │ ├── Invoke-Patch200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Patch202HttpSuccess.Tests.ps1 │ │ ├── Invoke-Patch204HttpSuccess.Tests.ps1 │ │ ├── Invoke-Patch302HttpRedirect.Tests.ps1 │ │ ├── Invoke-Patch307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Patch400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Patch405HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Patch414HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Patch500HttpRetry.Tests.ps1 │ │ ├── Invoke-Patch504HttpRetry.Tests.ps1 │ │ ├── Invoke-Post200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Post201HttpSuccess.Tests.ps1 │ │ ├── Invoke-Post202HttpSuccess.Tests.ps1 │ │ ├── Invoke-Post204HttpSuccess.Tests.ps1 │ │ ├── Invoke-Post303HttpRedirect.Tests.ps1 │ │ ├── Invoke-Post307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Post400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Post406HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Post415HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Post503HttpRetry.Tests.ps1 │ │ ├── Invoke-Post505HttpServerFailure.Tests.ps1 │ │ ├── Invoke-Put200HttpSuccess.Tests.ps1 │ │ ├── Invoke-Put201HttpSuccess.Tests.ps1 │ │ ├── Invoke-Put202HttpSuccess.Tests.ps1 │ │ ├── Invoke-Put204HttpSuccess.Tests.ps1 │ │ ├── Invoke-Put301HttpRedirect.Tests.ps1 │ │ ├── Invoke-Put307HttpRedirect.Tests.ps1 │ │ ├── Invoke-Put400HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Put404HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Put409HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Put413HttpClientFailure.Tests.ps1 │ │ ├── Invoke-Put500HttpRetry.Tests.ps1 │ │ ├── Invoke-Put504HttpRetry.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── model-flattening │ └── test │ │ ├── Get-Array.Tests.ps1 │ │ ├── Get-Dictionary.Tests.ps1 │ │ ├── Get-ResourceCollection.Tests.ps1 │ │ ├── Get-WrappedArray.Tests.ps1 │ │ ├── Invoke-FlattenedSimpleProduct.Tests.ps1 │ │ ├── Set-Array.Tests.ps1 │ │ ├── Set-Dictionary.Tests.ps1 │ │ ├── Set-ResourceCollection.Tests.ps1 │ │ ├── Set-SimpleProduct.Tests.ps1 │ │ ├── Set-WrappedArray.Tests.ps1 │ │ └── readme.md ├── paging │ └── test │ │ ├── Get-PagingMultiplePage.Tests.ps1 │ │ ├── Get-PagingMultiplePageFailure.Tests.ps1 │ │ ├── Get-PagingMultiplePageFailureUri.Tests.ps1 │ │ ├── Get-PagingMultiplePageFragment.Tests.ps1 │ │ ├── Get-PagingMultiplePageFragmentNextLink.Tests.ps1 │ │ ├── Get-PagingMultiplePageLro.Tests.ps1 │ │ ├── Get-PagingMultiplePageRetryFirst.Tests.ps1 │ │ ├── Get-PagingMultiplePageRetrySecond.Tests.ps1 │ │ ├── Get-PagingNoItemNamePage.Tests.ps1 │ │ ├── Get-PagingNullNextLinkNamePage.Tests.ps1 │ │ ├── Get-PagingOdataMultiplePage.Tests.ps1 │ │ ├── Get-PagingSinglePage.Tests.ps1 │ │ ├── Get-PagingSinglePageFailure.Tests.ps1 │ │ ├── Invoke-NextPagingFragment.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── psd-customization │ ├── metadata.tests.ps1 │ ├── petstore.json │ └── readme │ │ ├── empty-value.md.sample │ │ ├── fully-customized.md.sample │ │ └── no-metadata.md.sample ├── report │ └── test │ │ ├── Get-Report.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── required-optional │ └── test │ │ ├── Get-ImplicitOptionalGlobalQuery.Tests.ps1 │ │ ├── Get-ImplicitRequiredGlobalPath.Tests.ps1 │ │ ├── Get-ImplicitRequiredGlobalQuery.Tests.ps1 │ │ ├── Get-ImplicitRequiredPath.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalArrayHeader.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalArrayParameter.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalArrayProperty.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalClassParameter.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalClassProperty.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalIntegerHeader.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalIntegerParameter.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalIntegerProperty.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalStringHeader.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalStringParameter.Tests.ps1 │ │ ├── Invoke-ExplicitOptionalStringProperty.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredArrayHeader.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredArrayParameter.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredArrayProperty.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredClassParameter.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredClassProperty.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredIntegerHeader.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredIntegerParameter.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredIntegerProperty.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredStringHeader.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredStringParameter.Tests.ps1 │ │ ├── Invoke-ExplicitRequiredStringProperty.Tests.ps1 │ │ ├── Set-ImplicitOptionalBody.Tests.ps1 │ │ ├── Set-ImplicitOptionalHeader.Tests.ps1 │ │ ├── Set-ImplicitOptionalQuery.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── subscriptionId-apiVersion │ └── test │ │ ├── Get-GroupSampleResourceGroup.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── url-multi-collectionFormat │ └── test │ │ ├── Invoke-ArrayQueryStringMultiEmpty.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringMultiNull.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringMultiValid.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 ├── url │ └── test │ │ ├── Get-PathBooleanFalse.Tests.ps1 │ │ ├── Get-PathBooleanTrue.Tests.ps1 │ │ ├── Get-PathIntNegativeOneMillion.Tests.ps1 │ │ ├── Get-PathIntOneMillion.Tests.ps1 │ │ ├── Get-PathItem.Tests.ps1 │ │ ├── Get-PathItemGlobalAndLocalQueryNull.Tests.ps1 │ │ ├── Get-PathItemGlobalQueryNull.Tests.ps1 │ │ ├── Get-PathItemLocalPathItemQueryNull.Tests.ps1 │ │ ├── Get-PathNegativeTenBillion.Tests.ps1 │ │ ├── Get-PathTenBillion.Tests.ps1 │ │ ├── Get-QueryBooleanFalse.Tests.ps1 │ │ ├── Get-QueryBooleanNull.Tests.ps1 │ │ ├── Get-QueryBooleanTrue.Tests.ps1 │ │ ├── Get-QueryIntNegativeOneMillion.Tests.ps1 │ │ ├── Get-QueryIntNull.Tests.ps1 │ │ ├── Get-QueryIntOneMillion.Tests.ps1 │ │ ├── Get-QueryLongNull.Tests.ps1 │ │ ├── Get-QueryNegativeTenBillion.Tests.ps1 │ │ ├── Get-QueryTenBillion.Tests.ps1 │ │ ├── Invoke-ArrayPathCsv.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringCsvEmpty.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringCsvNull.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringCsvValid.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringPipeValid.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringSsvValid.Tests.ps1 │ │ ├── Invoke-ArrayQueryStringTsvValid.Tests.ps1 │ │ ├── Invoke-Base64PathUrl.Tests.ps1 │ │ ├── Invoke-BytePathMultiByte.Tests.ps1 │ │ ├── Invoke-BytePathNull.Tests.ps1 │ │ ├── Invoke-ByteQueryMultiByte.Tests.ps1 │ │ ├── Invoke-ByteQueryNull.Tests.ps1 │ │ ├── Invoke-DatePathNull.Tests.ps1 │ │ ├── Invoke-DatePathTimeNull.Tests.ps1 │ │ ├── Invoke-DatePathTimeValid.Tests.ps1 │ │ ├── Invoke-DatePathValid.Tests.ps1 │ │ ├── Invoke-DateQueryNull.Tests.ps1 │ │ ├── Invoke-DateQueryTimeNull.Tests.ps1 │ │ ├── Invoke-DateQueryTimeValid.Tests.ps1 │ │ ├── Invoke-DateQueryValid.Tests.ps1 │ │ ├── Invoke-DoublePathDecimalNegative.Tests.ps1 │ │ ├── Invoke-DoublePathDecimalPositive.Tests.ps1 │ │ ├── Invoke-DoubleQueryDecimalNegative.Tests.ps1 │ │ ├── Invoke-DoubleQueryDecimalPositive.Tests.ps1 │ │ ├── Invoke-DoubleQueryNull.Tests.ps1 │ │ ├── Invoke-EmptyPathByte.Tests.ps1 │ │ ├── Invoke-EmptyQueryByte.Tests.ps1 │ │ ├── Invoke-EnumPathNull.Tests.ps1 │ │ ├── Invoke-EnumPathValid.Tests.ps1 │ │ ├── Invoke-EnumQueryNull.Tests.ps1 │ │ ├── Invoke-EnumQueryValid.Tests.ps1 │ │ ├── Invoke-FloatPathScientificNegative.Tests.ps1 │ │ ├── Invoke-FloatPathScientificPositive.Tests.ps1 │ │ ├── Invoke-FloatQueryNull.Tests.ps1 │ │ ├── Invoke-FloatQueryScientificNegative.Tests.ps1 │ │ ├── Invoke-FloatQueryScientificPositive.Tests.ps1 │ │ ├── Invoke-StringPathEmpty.Tests.ps1 │ │ ├── Invoke-StringPathNull.Tests.ps1 │ │ ├── Invoke-StringPathUnicode.Tests.ps1 │ │ ├── Invoke-StringPathUrlEncoded.Tests.ps1 │ │ ├── Invoke-StringQueryEmpty.Tests.ps1 │ │ ├── Invoke-StringQueryNull.Tests.ps1 │ │ ├── Invoke-StringQueryUnicode.Tests.ps1 │ │ ├── Invoke-StringQueryUrlEncoded.Tests.ps1 │ │ ├── Invoke-TimePath.Tests.ps1 │ │ ├── loadEnv.ps1 │ │ ├── readme.md │ │ └── utils.ps1 └── validation │ └── test │ ├── Get-.Tests.ps1 │ ├── Invoke-.Tests.ps1 │ ├── Invoke-ValidationRedis.Tests.ps1 │ ├── loadEnv.ps1 │ ├── readme.md │ └── utils.ps1 ├── tools └── docker │ ├── Dockerfile │ └── readme.md └── tsconfig.json /.azure-pipelines/credscan-suppressions.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.azure-pipelines/daily-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.azure-pipelines/daily-build.yml -------------------------------------------------------------------------------- /.azure-pipelines/pr-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.azure-pipelines/pr-validation.yml -------------------------------------------------------------------------------- /.azure-pipelines/security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.azure-pipelines/security-scan.yml -------------------------------------------------------------------------------- /.azure-pipelines/test-module-upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.azure-pipelines/test-module-upgrade.yml -------------------------------------------------------------------------------- /.default-eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.default-eslintrc.yaml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/postcreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.devcontainer/postcreate.sh -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.d.ts -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-emitter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.github/workflows/test-emitter.yml -------------------------------------------------------------------------------- /.github/workflows/test-sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.github/workflows/test-sdk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/cmpclass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/cmpclass.ps1 -------------------------------------------------------------------------------- /.scripts/for-each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/for-each.js -------------------------------------------------------------------------------- /.scripts/function-compare.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/function-compare.ps1 -------------------------------------------------------------------------------- /.scripts/generate-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/generate-tests.ps1 -------------------------------------------------------------------------------- /.scripts/generate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/generate.ps1 -------------------------------------------------------------------------------- /.scripts/interactive-testserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/interactive-testserver.ps1 -------------------------------------------------------------------------------- /.scripts/npm-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/npm-run.js -------------------------------------------------------------------------------- /.scripts/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/publish.yaml -------------------------------------------------------------------------------- /.scripts/run-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/run-tests.ps1 -------------------------------------------------------------------------------- /.scripts/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/run.ps1 -------------------------------------------------------------------------------- /.scripts/set-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/set-versions.js -------------------------------------------------------------------------------- /.scripts/sync-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/sync-versions.js -------------------------------------------------------------------------------- /.scripts/tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/tests.ps1 -------------------------------------------------------------------------------- /.scripts/verify-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/verify-install.ps1 -------------------------------------------------------------------------------- /.scripts/verify-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/verify-pull-request.yaml -------------------------------------------------------------------------------- /.scripts/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.scripts/watch.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/SECURITY.md -------------------------------------------------------------------------------- /common/config/rush/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/config/rush/.npmrc -------------------------------------------------------------------------------- /common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/config/rush/command-line.json -------------------------------------------------------------------------------- /common/config/rush/common-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/config/rush/common-versions.json -------------------------------------------------------------------------------- /common/config/rush/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/config/rush/pnpm-lock.yaml -------------------------------------------------------------------------------- /common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /common/scripts/install-run-rush-pnpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/scripts/install-run-rush-pnpm.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/common/scripts/install-run.js -------------------------------------------------------------------------------- /docs/building-the-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/building-the-plugin.md -------------------------------------------------------------------------------- /docs/conformance-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/conformance-tests.md -------------------------------------------------------------------------------- /docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/customization.md -------------------------------------------------------------------------------- /docs/debugging-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/debugging-modules.md -------------------------------------------------------------------------------- /docs/default-directory-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/default-directory-layout.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/directives.md -------------------------------------------------------------------------------- /docs/features-of-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/features-of-v4.md -------------------------------------------------------------------------------- /docs/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/metadata.md -------------------------------------------------------------------------------- /docs/migration-from-v3-to-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/migration-from-v3-to-v4.md -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/packaging-the-module.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/plugin-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/plugin-architecture.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /docs/repository-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/repository-layout.md -------------------------------------------------------------------------------- /docs/samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/samples/readme.md -------------------------------------------------------------------------------- /docs/samples/timeswire/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/samples/timeswire/readme.md -------------------------------------------------------------------------------- /docs/samples/timeswire/timeswire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/samples/timeswire/timeswire.yaml -------------------------------------------------------------------------------- /docs/samples/xkcd/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/samples/xkcd/pic.png -------------------------------------------------------------------------------- /docs/samples/xkcd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/samples/xkcd/readme.md -------------------------------------------------------------------------------- /docs/samples/xkcd/xkcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/samples/xkcd/xkcd.yaml -------------------------------------------------------------------------------- /docs/scenario-cmdlets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/scenario-cmdlets.md -------------------------------------------------------------------------------- /docs/testing-with-pester.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/docs/testing-with-pester.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/package.json -------------------------------------------------------------------------------- /packages/typespec-powershell/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/.eslintrc.yml -------------------------------------------------------------------------------- /packages/typespec-powershell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/LICENSE -------------------------------------------------------------------------------- /packages/typespec-powershell/REAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/REAME.md -------------------------------------------------------------------------------- /packages/typespec-powershell/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/configuration.yaml -------------------------------------------------------------------------------- /packages/typespec-powershell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/package.json -------------------------------------------------------------------------------- /packages/typespec-powershell/prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/prettierrc.yaml -------------------------------------------------------------------------------- /packages/typespec-powershell/src/convertor/convertor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/convertor/convertor.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/emitter.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/index.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/lib.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/testing/index.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/types/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/types/interfaces.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/utils/clientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/utils/clientUtils.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/utils/modelUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/utils/modelUtils.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/utils/namespaceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/utils/namespaceUtils.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/utils/operationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/utils/operationUtil.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/src/utils/pageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/src/utils/pageUtils.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/test/hello.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/test/hello.test.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/test/test-host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/test/test-host.ts -------------------------------------------------------------------------------- /packages/typespec-powershell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/packages/typespec-powershell/tsconfig.json -------------------------------------------------------------------------------- /powershell/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.d.ts -------------------------------------------------------------------------------- /powershell/.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/.eslintrc.yaml -------------------------------------------------------------------------------- /powershell/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/.npmignore -------------------------------------------------------------------------------- /powershell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/LICENSE -------------------------------------------------------------------------------- /powershell/autorest-configuration-for-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/autorest-configuration-for-sdk.md -------------------------------------------------------------------------------- /powershell/autorest-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/autorest-configuration.md -------------------------------------------------------------------------------- /powershell/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/changelog.md -------------------------------------------------------------------------------- /powershell/cmdlets/class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/cmdlets/class.ts -------------------------------------------------------------------------------- /powershell/cmdlets/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/cmdlets/namespace.ts -------------------------------------------------------------------------------- /powershell/cmdlets/parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/cmdlets/parameter.ts -------------------------------------------------------------------------------- /powershell/enums/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/enums/namespace.ts -------------------------------------------------------------------------------- /powershell/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/exports.ts -------------------------------------------------------------------------------- /powershell/file-formats/md-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/file-formats/md-file.ts -------------------------------------------------------------------------------- /powershell/file-formats/psd-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/file-formats/psd-file.ts -------------------------------------------------------------------------------- /powershell/file-formats/psscript-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/file-formats/psscript-file.ts -------------------------------------------------------------------------------- /powershell/generators/AssemblyInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/AssemblyInfo.ts -------------------------------------------------------------------------------- /powershell/generators/csproj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/csproj.ts -------------------------------------------------------------------------------- /powershell/generators/gitattributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/gitattributes.ts -------------------------------------------------------------------------------- /powershell/generators/gitignore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/gitignore.ts -------------------------------------------------------------------------------- /powershell/generators/inputhandler.custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/inputhandler.custom.ts -------------------------------------------------------------------------------- /powershell/generators/nuspec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/nuspec.ts -------------------------------------------------------------------------------- /powershell/generators/psm1.custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/psm1.custom.ts -------------------------------------------------------------------------------- /powershell/generators/psm1.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/psm1.internal.ts -------------------------------------------------------------------------------- /powershell/generators/psm1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/psm1.ts -------------------------------------------------------------------------------- /powershell/generators/readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/readme.ts -------------------------------------------------------------------------------- /powershell/generators/script-cmdlet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/generators/script-cmdlet.ts -------------------------------------------------------------------------------- /powershell/internal/name-inferrer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/internal/name-inferrer.ts -------------------------------------------------------------------------------- /powershell/internal/powershell-declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/internal/powershell-declarations.ts -------------------------------------------------------------------------------- /powershell/internal/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/internal/project.ts -------------------------------------------------------------------------------- /powershell/internal/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/internal/state.ts -------------------------------------------------------------------------------- /powershell/internal/verbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/internal/verbs.ts -------------------------------------------------------------------------------- /powershell/llcsharp/clientruntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/clientruntime.ts -------------------------------------------------------------------------------- /powershell/llcsharp/code-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/code-model.ts -------------------------------------------------------------------------------- /powershell/llcsharp/csharp-declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/csharp-declarations.ts -------------------------------------------------------------------------------- /powershell/llcsharp/enums/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/enums/enum.ts -------------------------------------------------------------------------------- /powershell/llcsharp/enums/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/enums/namespace.ts -------------------------------------------------------------------------------- /powershell/llcsharp/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/exports.ts -------------------------------------------------------------------------------- /powershell/llcsharp/extended-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/extended-variable.ts -------------------------------------------------------------------------------- /powershell/llcsharp/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/generator.ts -------------------------------------------------------------------------------- /powershell/llcsharp/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/messages.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/idictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/idictionary.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/interface.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/model-class-dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/model-class-dictionary.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/model-class-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/model-class-json.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/model-class-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/model-class-serializer.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/model-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/model-class.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/namespace.ts -------------------------------------------------------------------------------- /powershell/llcsharp/model/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/model/property.ts -------------------------------------------------------------------------------- /powershell/llcsharp/operation/api-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/operation/api-class.ts -------------------------------------------------------------------------------- /powershell/llcsharp/operation/method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/operation/method.ts -------------------------------------------------------------------------------- /powershell/llcsharp/operation/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/operation/namespace.ts -------------------------------------------------------------------------------- /powershell/llcsharp/operation/parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/operation/parameter.ts -------------------------------------------------------------------------------- /powershell/llcsharp/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/project.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/Uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/Uuid.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/array.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/binary.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/boolean.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/byte-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/byte-array.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/char.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/char.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/date-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/date-time.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/date.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/duration.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/enum.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/extended-type-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/extended-type-declaration.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/fixed-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/fixed-array.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/integer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/integer.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/object.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/password.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/primitive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/primitive.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/schema-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/schema-resolver.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/string.ts -------------------------------------------------------------------------------- /powershell/llcsharp/schema/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/schema/uri.ts -------------------------------------------------------------------------------- /powershell/llcsharp/validations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/llcsharp/validations.ts -------------------------------------------------------------------------------- /powershell/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/main.ts -------------------------------------------------------------------------------- /powershell/models/model-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/models/model-extensions.ts -------------------------------------------------------------------------------- /powershell/module/module-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/module/module-class.ts -------------------------------------------------------------------------------- /powershell/module/module-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/module/module-namespace.ts -------------------------------------------------------------------------------- /powershell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/package.json -------------------------------------------------------------------------------- /powershell/plugins/add-azure-completers-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/add-azure-completers-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/create-commands-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/create-commands-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/cs-namer-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/cs-namer-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/llcsharp-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/llcsharp-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/modifiers-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/modifiers-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/plugin-create-inline-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/plugin-create-inline-properties.ts -------------------------------------------------------------------------------- /powershell/plugins/plugin-tweak-m4-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/plugin-tweak-m4-model.ts -------------------------------------------------------------------------------- /powershell/plugins/plugin-tweak-model-azure-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/plugin-tweak-model-azure-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/plugin-tweak-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/plugin-tweak-model.ts -------------------------------------------------------------------------------- /powershell/plugins/powershell-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/powershell-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/ps-namer-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/ps-namer-v2.ts -------------------------------------------------------------------------------- /powershell/plugins/sdk-create-inline-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/sdk-create-inline-properties.ts -------------------------------------------------------------------------------- /powershell/plugins/sdk-cs-namer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/sdk-cs-namer.ts -------------------------------------------------------------------------------- /powershell/plugins/sdk-cs-simplifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/sdk-cs-simplifier.ts -------------------------------------------------------------------------------- /powershell/plugins/sdk-generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/sdk-generate.ts -------------------------------------------------------------------------------- /powershell/plugins/sdk-modifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/sdk-modifiers.ts -------------------------------------------------------------------------------- /powershell/plugins/sdk-tweak-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/plugins/sdk-tweak-model.ts -------------------------------------------------------------------------------- /powershell/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/readme.md -------------------------------------------------------------------------------- /powershell/resources/assets/build-module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/build-module.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/check-dependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/check-dependencies.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/create-model-cmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/create-model-cmdlets.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/custom/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/docs/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/examples/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/export-surface.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/export-surface.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/exports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/exports/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/generate-help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/generate-help.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/generate-portal-ux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/generate-portal-ux.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/how-to.md -------------------------------------------------------------------------------- /powershell/resources/assets/internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/internal/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/license.txt -------------------------------------------------------------------------------- /powershell/resources/assets/pack-module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/pack-module.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/resources/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/run-module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/run-module.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/test-module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/test-module.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/test/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/test/loadEnv.ps1 -------------------------------------------------------------------------------- /powershell/resources/assets/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /powershell/resources/assets/tools/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/tools/Resources/.gitignore -------------------------------------------------------------------------------- /powershell/resources/assets/tools/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/tools/Resources/README.md -------------------------------------------------------------------------------- /powershell/resources/assets/tools/Resources/how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/tools/Resources/how-to.md -------------------------------------------------------------------------------- /powershell/resources/assets/tools/Resources/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/assets/tools/Resources/license.txt -------------------------------------------------------------------------------- /powershell/resources/built-time-cmdlets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/built-time-cmdlets.csproj -------------------------------------------------------------------------------- /powershell/resources/built-time-cmdlets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/built-time-cmdlets.sln -------------------------------------------------------------------------------- /powershell/resources/psruntime/AsyncCommandRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/AsyncCommandRuntime.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/AsyncJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/AsyncJob.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/AsyncOperationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/AsyncOperationResponse.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/BuildTime/PsAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/BuildTime/PsAttributes.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/BuildTime/PsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/BuildTime/PsExtensions.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/BuildTime/PsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/BuildTime/PsHelpers.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/Debugging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/Debugging.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/DictionaryExtensions.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/EventDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/EventDataExtensions.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/EventsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/EventsExtensions.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/HttpPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/HttpPipeline.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/HttpPipelineMocking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/HttpPipelineMocking.ps1 -------------------------------------------------------------------------------- /powershell/resources/psruntime/MessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/MessageAttribute.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/MessageAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/MessageAttributeHelper.cs -------------------------------------------------------------------------------- /powershell/resources/psruntime/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/psruntime/Properties/Resources.resx -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/client/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/client/Context.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/client/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/client/Extensions.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/client/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/client/Method.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/json/Iso/IsoDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/json/Iso/IsoDate.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/json/JsonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/json/JsonType.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/json/Nodes/XNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/json/Nodes/XNull.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/pipeline/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/pipeline/Events.cs -------------------------------------------------------------------------------- /powershell/resources/runtime/csharp/pipeline/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/runtime/csharp/pipeline/Response.cs -------------------------------------------------------------------------------- /powershell/resources/signing/MSSharedLibKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/signing/MSSharedLibKey.snk -------------------------------------------------------------------------------- /powershell/resources/templates/azureMethod.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/azureMethod.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/azureMethodGroup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/azureMethodGroup.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/azureServiceClient.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/azureServiceClient.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/enum.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/enum.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/exception.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/exception.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/extensionMethod.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/extensionMethod.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/extensions.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/extensions.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/method.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/method.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/methodBodyRestCall.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/methodBodyRestCall.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/methodGroupInterface.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/methodGroupInterface.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/model.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/model.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/page.ejs -------------------------------------------------------------------------------- /powershell/resources/templates/serviceClientBody.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/templates/serviceClientBody.ejs -------------------------------------------------------------------------------- /powershell/resources/utils/Unprotect-SecureString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/resources/utils/Unprotect-SecureString.ps1 -------------------------------------------------------------------------------- /powershell/sdk/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/sdk/project.ts -------------------------------------------------------------------------------- /powershell/sdk/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/sdk/state.ts -------------------------------------------------------------------------------- /powershell/sdk/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/sdk/utility.ts -------------------------------------------------------------------------------- /powershell/test/noun-cleaning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/noun-cleaning.ts -------------------------------------------------------------------------------- /powershell/test/operationId-inferring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/operationId-inferring.ts -------------------------------------------------------------------------------- /powershell/test/resources/operations/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/resources/operations/config.yaml -------------------------------------------------------------------------------- /powershell/test/resources/operations/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/resources/operations/model.yaml -------------------------------------------------------------------------------- /powershell/test/resources/operations/operation-ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/resources/operations/operation-ids.txt -------------------------------------------------------------------------------- /powershell/test/resources/service-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/resources/service-names.txt -------------------------------------------------------------------------------- /powershell/test/resources/titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/resources/titles.txt -------------------------------------------------------------------------------- /powershell/test/test-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/test-example.ts -------------------------------------------------------------------------------- /powershell/test/test-service-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/test/test-service-name.ts -------------------------------------------------------------------------------- /powershell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/tsconfig.json -------------------------------------------------------------------------------- /powershell/utils/PwshModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/PwshModel.ts -------------------------------------------------------------------------------- /powershell/utils/SdkModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/SdkModel.ts -------------------------------------------------------------------------------- /powershell/utils/TrieNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/TrieNode.ts -------------------------------------------------------------------------------- /powershell/utils/code-namer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/code-namer.ts -------------------------------------------------------------------------------- /powershell/utils/command-operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/command-operation.ts -------------------------------------------------------------------------------- /powershell/utils/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/components.ts -------------------------------------------------------------------------------- /powershell/utils/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/extensions.ts -------------------------------------------------------------------------------- /powershell/utils/http-definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/http-definitions.ts -------------------------------------------------------------------------------- /powershell/utils/http-operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/http-operation.ts -------------------------------------------------------------------------------- /powershell/utils/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/info.ts -------------------------------------------------------------------------------- /powershell/utils/model-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/model-state.ts -------------------------------------------------------------------------------- /powershell/utils/powershell-comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/powershell-comment.ts -------------------------------------------------------------------------------- /powershell/utils/programatic-operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/programatic-operation.ts -------------------------------------------------------------------------------- /powershell/utils/resolve-conflicts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/resolve-conflicts.ts -------------------------------------------------------------------------------- /powershell/utils/resourceName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/resourceName.ts -------------------------------------------------------------------------------- /powershell/utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/schema.ts -------------------------------------------------------------------------------- /powershell/utils/security-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/security-scheme.ts -------------------------------------------------------------------------------- /powershell/utils/sort-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/sort-parameters.ts -------------------------------------------------------------------------------- /powershell/utils/tsp-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/tsp-generator.ts -------------------------------------------------------------------------------- /powershell/utils/tsp-host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/powershell/utils/tsp-host.ts -------------------------------------------------------------------------------- /powershell/utils/uid.ts: -------------------------------------------------------------------------------- 1 | let n = 0; 2 | 3 | export function uid() { 4 | return n++; 5 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/readme.md -------------------------------------------------------------------------------- /rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/rush.json -------------------------------------------------------------------------------- /samples/TimesWire/generated/private/custom/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/samples/TimesWire/generated/private/custom/Module.cs -------------------------------------------------------------------------------- /samples/TimesWire/generated/tests/get-article.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/samples/TimesWire/generated/tests/get-article.tests.ps1 -------------------------------------------------------------------------------- /samples/TimesWire/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/samples/TimesWire/readme.md -------------------------------------------------------------------------------- /samples/TimesWire/timeswire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/samples/TimesWire/timeswire.yaml -------------------------------------------------------------------------------- /samples/Xkcd/xkcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/samples/Xkcd/xkcd.yaml -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AppComplianceAutomation.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AppComplianceAutomation.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Astronomer.Astro.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Astronomer.Astro.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/client.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/AzureAI.Assets/client.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/common.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/AzureAI.Assets/common.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/main.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/AzureAI.Assets/main.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/model.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/AzureAI.Assets/model.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/routes.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/AzureAI.Assets/routes.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureAI.Assets/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureFleet.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureFleet.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Chaos.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Chaos.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/CodeSigning.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/CodeSigning.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ComputeSchedule.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ComputeSchedule.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Dashboard.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Dashboard.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DataBox.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DataBox.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DataProtection.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DataProtection.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DataReplication.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DataReplication.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DeviceProvisioningServices.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DeviceProvisioningServices.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DeviceRegistry.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DeviceRegistry.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DocumentDB.MongoCluster.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/DocumentDB.MongoCluster.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/EdgeZones.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/EdgeZones.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/Volume.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ElasticSan.brown/Volume.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/client.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ElasticSan.brown/client.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/main.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ElasticSan.brown/main.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/models.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ElasticSan.brown/models.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ElasticSan.brown/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/routes.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ElasticSan.brown/routes.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ElasticSan.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/EmitterTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/EmitterTest.ps1 -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Fleet.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Fleet.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/HardwareSecurityModules.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/HardwareSecurityModules.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/HealthDataAIServices.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/HealthDataAIServices.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Help.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Help.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/HybridKubernetes.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/HybridKubernetes.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Informatica.DataManagement.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Informatica.DataManagement.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/KeyVault.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/KeyVault.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/KubernetesRuntime.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/KubernetesRuntime.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/LambdaTest.HyperExecute.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/LambdaTest.HyperExecute.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Liftr.WeightsAndBiases.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Liftr.WeightsAndBiases.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Microsoft.AVS.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Microsoft.AVS.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Microsoft.DevOpsInfrastructure.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Microsoft.DevOpsInfrastructure.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Neon.Postgres.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Neon.Postgres.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/NetworkAnalytics.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/NetworkAnalytics.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Oracle.Database.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Oracle.Database.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Pinecone.VectorDb.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Pinecone.VectorDb.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Qumulo.Storage.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Qumulo.Storage.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/RecoveryServices.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/RecoveryServices.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ScVmm.Management/Cloud.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ScVmm.Management/Cloud.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ScVmm.Management/client.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ScVmm.Management/client.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ScVmm.Management/main.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ScVmm.Management/main.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ScVmm.Management/models.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/ScVmm.Management/models.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ServiceFabricManagedClusters.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/ServiceFabricManagedClusters.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/client.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/Sphere.Management/client.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/device.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/Sphere.Management/device.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/image.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/Sphere.Management/image.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/main.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/Sphere.Management/main.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/models.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/Sphere.Management/models.tsp -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Sphere.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/StandbyPool.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/StandbyPool.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/StorageAction.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/StorageAction.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/StorageMover.Management.brown/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/StorageMover.Management.brown/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Workloads.SAPVirtualInstance.Management/target/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/Workloads.SAPVirtualInstance.Management/target/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/configuration.json -------------------------------------------------------------------------------- /tests-upgrade/tests-emitter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-emitter/package.json -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/.gitignore -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/AutoRestUpgradeTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/AutoRestUpgradeTest.ps1 -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/Configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/Configuration.json -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/README.md: -------------------------------------------------------------------------------- 1 | ### Description 2 | Add test case for autorest powershell upgrade. -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/basic-get/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/basic-get/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/basic-get/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/basic-get/swagger.json -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/basic-spec-root/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/basic-spec-root/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/component-param/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/component-param/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/databricks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/databricks/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/directive-enum/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/directive-enum/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/directive-model/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/directive-model/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/functions/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/kubconf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/kubconf/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/.gitignore -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/custom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/custom/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/docs/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/examples/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/how-to.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/license.txt -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/mysql.json -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/resources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/resources/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/mysql/test/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/mysql/tools/Resources/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/readme.azure.noprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/readme.azure.noprofile.md -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/sample-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/sample-swagger.json -------------------------------------------------------------------------------- /tests-upgrade/tests-m4-upgrade/tsi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-m4-upgrade/tsi/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-sdk1-support/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-sdk1-support/.gitignore -------------------------------------------------------------------------------- /tests-upgrade/tests-sdk1-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-sdk1-support/README.md -------------------------------------------------------------------------------- /tests-upgrade/tests-sdk1-support/basic-get/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-sdk1-support/basic-get/readme.md -------------------------------------------------------------------------------- /tests-upgrade/tests-sdk1-support/basic-get/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-sdk1-support/basic-get/swagger.json -------------------------------------------------------------------------------- /tests-upgrade/tests-sdk1-support/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-sdk1-support/configuration.json -------------------------------------------------------------------------------- /tests-upgrade/tests-sdk1-support/provider-aks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests-upgrade/tests-sdk1-support/provider-aks/readme.md -------------------------------------------------------------------------------- /tests/azure-parameter-grouping/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-parameter-grouping/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/azure-parameter-grouping/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-parameter-grouping/test/readme.md -------------------------------------------------------------------------------- /tests/azure-parameter-grouping/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-parameter-grouping/test/utils.ps1 -------------------------------------------------------------------------------- /tests/azure-report/test/Get-Report.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-report/test/Get-Report.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-report/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-report/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/azure-report/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-report/test/readme.md -------------------------------------------------------------------------------- /tests/azure-report/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-report/test/utils.ps1 -------------------------------------------------------------------------------- /tests/azure-resource-x/test/Get-Array.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/Get-Array.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource-x/test/Get-Dictionary.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/Get-Dictionary.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource-x/test/Set-Array.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/Set-Array.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource-x/test/Set-Dictionary.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/Set-Dictionary.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource-x/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/azure-resource-x/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/readme.md -------------------------------------------------------------------------------- /tests/azure-resource-x/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource-x/test/utils.ps1 -------------------------------------------------------------------------------- /tests/azure-resource/test/Get-Array.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/Get-Array.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource/test/Get-Dictionary.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/Get-Dictionary.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource/test/Set-Array.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/Set-Array.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource/test/Set-Dictionary.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/Set-Dictionary.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-resource/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/azure-resource/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/readme.md -------------------------------------------------------------------------------- /tests/azure-resource/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-resource/test/utils.ps1 -------------------------------------------------------------------------------- /tests/azure-special-properties/test/Get-Odata.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-special-properties/test/Get-Odata.Tests.ps1 -------------------------------------------------------------------------------- /tests/azure-special-properties/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-special-properties/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/azure-special-properties/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-special-properties/test/readme.md -------------------------------------------------------------------------------- /tests/azure-special-properties/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/azure-special-properties/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayBase64Url.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayBase64Url.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayBooleanTfft.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayBooleanTfft.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayByteInvalidNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayByteInvalidNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayByteValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayByteValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayComplexEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayComplexEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayComplexItemNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayComplexItemNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayComplexNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayComplexNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayComplexValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayComplexValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDateInvalidChar.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDateInvalidChar.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDateInvalidNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDateInvalidNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDateTimeValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDateTimeValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDateValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDateValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDictionaryEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDictionaryEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDictionaryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDictionaryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDictionaryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDictionaryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDoubleValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDoubleValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayDurationValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayDurationValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayEnumValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayEnumValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayFloatValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayFloatValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayIntInvalidNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayIntInvalidNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayIntegerValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayIntegerValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayItemEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayItemEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayItemNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayItemNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayLongInvalidNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayLongInvalidNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayLongValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayLongValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayString.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayStringEnumValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayStringEnumValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayStringValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayStringValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayUuidInvalidChar.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayUuidInvalidChar.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayUuidValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayUuidValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Get-ArrayValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Get-ArrayValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayBooleanTfft.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayBooleanTfft.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayByteValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayByteValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayComplexValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayComplexValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayDateTimeValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayDateTimeValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayDateValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayDateValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayDictionaryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayDictionaryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayDoubleValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayDoubleValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayDurationValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayDurationValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayEnumValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayEnumValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayFloatValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayFloatValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayIntegerValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayIntegerValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayLongValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayLongValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayStringEnumValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayStringEnumValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayStringValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayStringValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayUuidValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayUuidValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/Set-ArrayValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/Set-ArrayValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-array/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/readme.md -------------------------------------------------------------------------------- /tests/body-array/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-array/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/Get-BoolFalse.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/Get-BoolFalse.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/Get-BoolInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/Get-BoolInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/Get-BoolNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/Get-BoolNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/Get-BoolTrue.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/Get-BoolTrue.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/Set-BoolFalse.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/Set-BoolFalse.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/Set-BoolTrue.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/Set-BoolTrue.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-boolean/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/readme.md -------------------------------------------------------------------------------- /tests/body-boolean/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-boolean/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/Get-ByteEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/Get-ByteEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/Get-ByteInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/Get-ByteInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/Get-ByteNonAscii.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/Get-ByteNonAscii.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/Get-ByteNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/Get-ByteNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/Set-ByteNonAscii.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/Set-ByteNonAscii.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-byte/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/readme.md -------------------------------------------------------------------------------- /tests/body-byte/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-byte/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-ArrayEmpty.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-ArrayEmpty.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-ArrayEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-ArrayEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-ArrayNotProvided.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-ArrayNotProvided.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-ArrayValid.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-ArrayValid.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-ArrayValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-ArrayValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicEmpty.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicEmpty.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicInvalid.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicInvalid.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicNotProvided.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicNotProvided.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicNull.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicNull.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicValid.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicValid.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-BasicValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-BasicValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-DictionaryEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-DictionaryEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-DictionaryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-DictionaryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-DictionaryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-DictionaryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-InheritanceValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-InheritanceValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PolymorphismValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PolymorphismValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveBool.Recording.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveBool.Recording.json -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveBool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveBool.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveByte.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveByte.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveDateTime.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveDateTime.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveDuration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveDuration.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveInt.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveInt.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveLong.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveLong.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Get-PrimitiveString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Get-PrimitiveString.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-ArrayEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-ArrayEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-ArrayValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-ArrayValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-BasicValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-BasicValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-DictionaryEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-DictionaryEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-DictionaryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-DictionaryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-InheritanceValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-InheritanceValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PolymorphismValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PolymorphismValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveBool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveBool.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveByte.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveByte.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveDateTime.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveDateTime.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveDuration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveDuration.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveInt.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveInt.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveLong.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveLong.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/Set-PrimitiveString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/Set-PrimitiveString.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-complex/test/localEnv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/localEnv.json -------------------------------------------------------------------------------- /tests/body-complex/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/readme.md -------------------------------------------------------------------------------- /tests/body-complex/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-complex/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Get-DateInvalidDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Get-DateInvalidDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Get-DateMaxDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Get-DateMaxDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Get-DateMinDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Get-DateMinDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Get-DateNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Get-DateNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Get-DateOverflowDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Get-DateOverflowDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Get-DateUnderflowDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Get-DateUnderflowDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Set-DateMaxDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Set-DateMaxDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/Set-DateMinDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/Set-DateMinDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-date/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/readme.md -------------------------------------------------------------------------------- /tests/body-date/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-date/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-datetime-rfc1123/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime-rfc1123/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-datetime-rfc1123/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime-rfc1123/test/readme.md -------------------------------------------------------------------------------- /tests/body-datetime-rfc1123/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime-rfc1123/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-datetime/test/Get-DatetimeInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/Get-DatetimeInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-datetime/test/Get-DatetimeNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/Get-DatetimeNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-datetime/test/Get-DatetimeOverflow.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/Get-DatetimeOverflow.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-datetime/test/Get-DatetimeUnderflow.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/Get-DatetimeUnderflow.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-datetime/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-datetime/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/readme.md -------------------------------------------------------------------------------- /tests/body-datetime/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-datetime/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/Get-DictionaryEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/Get-DictionaryEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/Get-DictionaryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/Get-DictionaryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/Get-DictionaryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/Get-DictionaryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/Set-DictionaryEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/Set-DictionaryEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/Set-DictionaryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/Set-DictionaryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-dictionary/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/readme.md -------------------------------------------------------------------------------- /tests/body-dictionary/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-dictionary/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-duration/test/Get-DurationInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-duration/test/Get-DurationInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-duration/test/Get-DurationNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-duration/test/Get-DurationNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-duration/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-duration/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-duration/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-duration/test/readme.md -------------------------------------------------------------------------------- /tests/body-duration/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-duration/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-file/test/Get-File.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-file/test/Get-File.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-file/test/Get-FileEmptyFile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-file/test/Get-FileEmptyFile.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-file/test/Get-FileLarge.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-file/test/Get-FileLarge.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-file/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-file/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-file/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-file/test/readme.md -------------------------------------------------------------------------------- /tests/body-file/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-file/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntInvalid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntInvalid.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntInvalidUnixTime.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntInvalidUnixTime.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntNullUnixTime.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntNullUnixTime.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntOverflowInt32.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntOverflowInt32.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntOverflowInt64.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntOverflowInt64.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntUnderflowInt32.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntUnderflowInt32.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntUnderflowInt64.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntUnderflowInt64.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Get-IntUnixTime.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Get-IntUnixTime.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Set-IntMax32.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Set-IntMax32.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Set-IntMax64.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Set-IntMax64.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Set-IntMin32.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Set-IntMin32.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Set-IntMin64.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Set-IntMin64.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/Set-IntUnixTimeDate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/Set-IntUnixTimeDate.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-integer/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/readme.md -------------------------------------------------------------------------------- /tests/body-integer/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-integer/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberBigDecimal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberBigDecimal.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberBigDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberBigDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberBigFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberBigFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberInvalidDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberInvalidDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberInvalidFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberInvalidFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberSmallDecimal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberSmallDecimal.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberSmallDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberSmallDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Get-NumberSmallFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Get-NumberSmallFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Set-NumberBigDecimal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Set-NumberBigDecimal.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Set-NumberBigDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Set-NumberBigDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Set-NumberBigFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Set-NumberBigFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Set-NumberSmallDecimal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Set-NumberSmallDecimal.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Set-NumberSmallDouble.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Set-NumberSmallDouble.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/Set-NumberSmallFloat.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/Set-NumberSmallFloat.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-number/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/readme.md -------------------------------------------------------------------------------- /tests/body-number/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-number/test/utils.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-EnumNotExpandable.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-EnumNotExpandable.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-EnumReferenced.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-EnumReferenced.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-StringBase64Encoded.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-StringBase64Encoded.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-StringEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-StringEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-StringMbc.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-StringMbc.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-StringNotProvided.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-StringNotProvided.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-StringNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-StringNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Get-StringWhitespace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Get-StringWhitespace.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Set-EnumNotExpandable.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Set-EnumNotExpandable.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Set-EnumReferenced.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Set-EnumReferenced.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Set-StringEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Set-StringEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Set-StringMbc.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Set-StringMbc.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Set-StringNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Set-StringNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/Set-StringWhitespace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/Set-StringWhitespace.Tests.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/body-string/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/readme.md -------------------------------------------------------------------------------- /tests/body-string/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/body-string/test/utils.ps1 -------------------------------------------------------------------------------- /tests/complex-model/test/Get-Redis.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/complex-model/test/Get-Redis.Tests.ps1 -------------------------------------------------------------------------------- /tests/complex-model/test/New-Redis.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/complex-model/test/New-Redis.Tests.ps1 -------------------------------------------------------------------------------- /tests/complex-model/test/Set-Redis.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/complex-model/test/Set-Redis.Tests.ps1 -------------------------------------------------------------------------------- /tests/complex-model/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/complex-model/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/complex-model/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/complex-model/test/readme.md -------------------------------------------------------------------------------- /tests/complex-model/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/complex-model/test/utils.ps1 -------------------------------------------------------------------------------- /tests/custom-baseUrl-more-options/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl-more-options/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/custom-baseUrl-more-options/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl-more-options/test/readme.md -------------------------------------------------------------------------------- /tests/custom-baseUrl-more-options/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl-more-options/test/utils.ps1 -------------------------------------------------------------------------------- /tests/custom-baseUrl/test/Get-PathEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl/test/Get-PathEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/custom-baseUrl/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/custom-baseUrl/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl/test/readme.md -------------------------------------------------------------------------------- /tests/custom-baseUrl/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/custom-baseUrl/test/utils.ps1 -------------------------------------------------------------------------------- /tests/extensible-enums-swagger/test/Add-Pet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/extensible-enums-swagger/test/Add-Pet.Tests.ps1 -------------------------------------------------------------------------------- /tests/extensible-enums-swagger/test/Get-Pet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/extensible-enums-swagger/test/Get-Pet.Tests.ps1 -------------------------------------------------------------------------------- /tests/extensible-enums-swagger/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/extensible-enums-swagger/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/extensible-enums-swagger/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/extensible-enums-swagger/test/readme.md -------------------------------------------------------------------------------- /tests/extensible-enums-swagger/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/extensible-enums-swagger/test/utils.ps1 -------------------------------------------------------------------------------- /tests/head-exceptions/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head-exceptions/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/head-exceptions/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head-exceptions/test/readme.md -------------------------------------------------------------------------------- /tests/head-exceptions/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head-exceptions/test/utils.ps1 -------------------------------------------------------------------------------- /tests/head/test/Invoke-Head200HttpSuccess.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head/test/Invoke-Head200HttpSuccess.Tests.ps1 -------------------------------------------------------------------------------- /tests/head/test/Invoke-Head204HttpSuccess.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head/test/Invoke-Head204HttpSuccess.Tests.ps1 -------------------------------------------------------------------------------- /tests/head/test/Invoke-Head404HttpSuccess.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head/test/Invoke-Head404HttpSuccess.Tests.ps1 -------------------------------------------------------------------------------- /tests/head/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/head/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head/test/readme.md -------------------------------------------------------------------------------- /tests/head/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/head/test/utils.ps1 -------------------------------------------------------------------------------- /tests/httpInfrastructure/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/httpInfrastructure/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/httpInfrastructure/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/httpInfrastructure/test/readme.md -------------------------------------------------------------------------------- /tests/httpInfrastructure/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/httpInfrastructure/test/utils.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Get-Array.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Get-Array.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Get-Dictionary.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Get-Dictionary.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Get-WrappedArray.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Get-WrappedArray.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Set-Array.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Set-Array.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Set-Dictionary.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Set-Dictionary.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Set-SimpleProduct.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Set-SimpleProduct.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/Set-WrappedArray.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/Set-WrappedArray.Tests.ps1 -------------------------------------------------------------------------------- /tests/model-flattening/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/model-flattening/test/readme.md -------------------------------------------------------------------------------- /tests/paging/test/Get-PagingMultiplePage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Get-PagingMultiplePage.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/Get-PagingMultiplePageLro.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Get-PagingMultiplePageLro.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/Get-PagingNoItemNamePage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Get-PagingNoItemNamePage.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/Get-PagingOdataMultiplePage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Get-PagingOdataMultiplePage.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/Get-PagingSinglePage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Get-PagingSinglePage.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/Get-PagingSinglePageFailure.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Get-PagingSinglePageFailure.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/Invoke-NextPagingFragment.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/Invoke-NextPagingFragment.Tests.ps1 -------------------------------------------------------------------------------- /tests/paging/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/paging/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/readme.md -------------------------------------------------------------------------------- /tests/paging/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/paging/test/utils.ps1 -------------------------------------------------------------------------------- /tests/psd-customization/metadata.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/psd-customization/metadata.tests.ps1 -------------------------------------------------------------------------------- /tests/psd-customization/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/psd-customization/petstore.json -------------------------------------------------------------------------------- /tests/psd-customization/readme/empty-value.md.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/psd-customization/readme/empty-value.md.sample -------------------------------------------------------------------------------- /tests/psd-customization/readme/no-metadata.md.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/psd-customization/readme/no-metadata.md.sample -------------------------------------------------------------------------------- /tests/report/test/Get-Report.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/report/test/Get-Report.Tests.ps1 -------------------------------------------------------------------------------- /tests/report/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/report/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/report/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/report/test/readme.md -------------------------------------------------------------------------------- /tests/report/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/report/test/utils.ps1 -------------------------------------------------------------------------------- /tests/required-optional/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/required-optional/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/required-optional/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/required-optional/test/readme.md -------------------------------------------------------------------------------- /tests/required-optional/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/required-optional/test/utils.ps1 -------------------------------------------------------------------------------- /tests/subscriptionId-apiVersion/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/subscriptionId-apiVersion/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/subscriptionId-apiVersion/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/subscriptionId-apiVersion/test/readme.md -------------------------------------------------------------------------------- /tests/subscriptionId-apiVersion/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/subscriptionId-apiVersion/test/utils.ps1 -------------------------------------------------------------------------------- /tests/url-multi-collectionFormat/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url-multi-collectionFormat/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/url-multi-collectionFormat/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url-multi-collectionFormat/test/readme.md -------------------------------------------------------------------------------- /tests/url-multi-collectionFormat/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url-multi-collectionFormat/test/utils.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathBooleanFalse.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathBooleanFalse.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathBooleanTrue.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathBooleanTrue.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathIntNegativeOneMillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathIntNegativeOneMillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathIntOneMillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathIntOneMillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathItem.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathItemGlobalQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathItemGlobalQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathNegativeTenBillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathNegativeTenBillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-PathTenBillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-PathTenBillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryBooleanFalse.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryBooleanFalse.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryBooleanNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryBooleanNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryBooleanTrue.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryBooleanTrue.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryIntNegativeOneMillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryIntNegativeOneMillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryIntNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryIntNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryIntOneMillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryIntOneMillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryLongNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryLongNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryNegativeTenBillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryNegativeTenBillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Get-QueryTenBillion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Get-QueryTenBillion.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-ArrayPathCsv.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-ArrayPathCsv.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-Base64PathUrl.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-Base64PathUrl.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-BytePathMultiByte.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-BytePathMultiByte.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-BytePathNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-BytePathNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-ByteQueryMultiByte.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-ByteQueryMultiByte.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-ByteQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-ByteQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DatePathNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DatePathNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DatePathTimeNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DatePathTimeNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DatePathTimeValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DatePathTimeValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DatePathValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DatePathValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DateQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DateQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DateQueryTimeNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DateQueryTimeNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DateQueryTimeValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DateQueryTimeValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DateQueryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DateQueryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-DoubleQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-DoubleQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-EmptyPathByte.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-EmptyPathByte.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-EmptyQueryByte.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-EmptyQueryByte.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-EnumPathNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-EnumPathNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-EnumPathValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-EnumPathValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-EnumQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-EnumQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-EnumQueryValid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-EnumQueryValid.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-FloatQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-FloatQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringPathEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringPathEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringPathNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringPathNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringPathUnicode.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringPathUnicode.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringPathUrlEncoded.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringPathUrlEncoded.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringQueryEmpty.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringQueryEmpty.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringQueryNull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringQueryNull.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringQueryUnicode.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringQueryUnicode.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-StringQueryUrlEncoded.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-StringQueryUrlEncoded.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/Invoke-TimePath.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/Invoke-TimePath.Tests.ps1 -------------------------------------------------------------------------------- /tests/url/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/url/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/readme.md -------------------------------------------------------------------------------- /tests/url/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/url/test/utils.ps1 -------------------------------------------------------------------------------- /tests/validation/test/Get-.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/validation/test/Get-.Tests.ps1 -------------------------------------------------------------------------------- /tests/validation/test/Invoke-.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/validation/test/Invoke-.Tests.ps1 -------------------------------------------------------------------------------- /tests/validation/test/loadEnv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/validation/test/loadEnv.ps1 -------------------------------------------------------------------------------- /tests/validation/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/validation/test/readme.md -------------------------------------------------------------------------------- /tests/validation/test/utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tests/validation/test/utils.ps1 -------------------------------------------------------------------------------- /tools/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tools/docker/Dockerfile -------------------------------------------------------------------------------- /tools/docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tools/docker/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/autorest.powershell/HEAD/tsconfig.json --------------------------------------------------------------------------------