├── .default-eslintrc.yaml ├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── policies │ └── resourceManagement.yml └── workflows │ ├── codeql.yml │ ├── consitency-checks.yml │ └── prepare-auto-release-branch.yml ├── .gitignore ├── .istanbul.yml ├── .prettierignore ├── .prettierrc.yml ├── .vscode ├── launch.json ├── readme.md ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── SECURITY.md ├── Samples ├── 3b-custom-transformations │ └── generated │ │ └── configuration.yaml ├── openapi-v2 │ ├── 1a-code-generation-minimal │ │ ├── Client │ │ │ ├── ISwaggerPetstore.cs │ │ │ ├── Models │ │ │ │ ├── Category.cs │ │ │ │ ├── Order.cs │ │ │ │ ├── Pet.cs │ │ │ │ ├── Tag.cs │ │ │ │ ├── User.cs │ │ │ │ └── XmlSerialization.cs │ │ │ ├── SwaggerPetstore.cs │ │ │ └── SwaggerPetstoreExtensions.cs │ │ ├── pétstöre.json │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 1b-code-generation-multilang │ │ ├── Azure.CSharp.Fluent │ │ │ └── Generated │ │ │ │ ├── ISwaggerPetstore.cs │ │ │ │ ├── Models │ │ │ │ ├── Error.cs │ │ │ │ ├── ErrorException.cs │ │ │ │ ├── ListPetsHeadersInner.cs │ │ │ │ └── PetInner.cs │ │ │ │ ├── SwaggerPetstore.cs │ │ │ │ └── SwaggerPetstoreExtensions.cs │ │ ├── Azure.CSharp │ │ │ ├── ISwaggerPetstoreClient.cs │ │ │ ├── Models │ │ │ │ ├── Error.cs │ │ │ │ ├── ErrorException.cs │ │ │ │ ├── ListPetsHeaders.cs │ │ │ │ └── Pet.cs │ │ │ ├── SwaggerPetstoreClient.cs │ │ │ └── SwaggerPetstoreClientExtensions.cs │ │ ├── Azure.Java.Fluent │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── cowstore │ │ │ │ ├── Error.java │ │ │ │ ├── ErrorException.java │ │ │ │ ├── ListPetsHeaders.java │ │ │ │ ├── implementation │ │ │ │ ├── PetInner.java │ │ │ │ ├── SwaggerPetstoreImpl.java │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ ├── Azure.Java │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── cowstore │ │ │ │ ├── SwaggerPetstore.java │ │ │ │ ├── implementation │ │ │ │ ├── SwaggerPetstoreImpl.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── Error.java │ │ │ │ ├── ErrorException.java │ │ │ │ ├── ListPetsHeaders.java │ │ │ │ ├── Pet.java │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ ├── Azure.NodeJS │ │ │ ├── lib │ │ │ │ ├── models │ │ │ │ │ ├── errorModel.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── pet.js │ │ │ │ └── swaggerPetstore.js │ │ │ └── package.json │ │ ├── Azure.Python │ │ │ └── cowstore │ │ │ │ ├── __init__.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── error.py │ │ │ │ └── pet.py │ │ │ │ ├── swagger_petstore.py │ │ │ │ └── version.py │ │ ├── Azure.Ruby │ │ │ └── 1.0.0 │ │ │ │ └── generated │ │ │ │ ├── petstore.rb │ │ │ │ └── petstore │ │ │ │ ├── models │ │ │ │ ├── error.rb │ │ │ │ └── pet.rb │ │ │ │ ├── module_definition.rb │ │ │ │ └── swagger_petstore.rb │ │ ├── CSharp │ │ │ ├── ISwaggerPetstore.cs │ │ │ ├── Models │ │ │ │ ├── Error.cs │ │ │ │ ├── ErrorException.cs │ │ │ │ ├── ListPetsHeaders.cs │ │ │ │ └── Pet.cs │ │ │ ├── SwaggerPetstore.cs │ │ │ └── SwaggerPetstoreExtensions.cs │ │ ├── Go │ │ │ ├── client.go │ │ │ ├── cowstoreapi │ │ │ │ └── interfaces.go │ │ │ ├── models.go │ │ │ └── version.go │ │ ├── Java │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── javanamespace │ │ │ │ ├── SwaggerPetstore.java │ │ │ │ ├── implementation │ │ │ │ ├── SwaggerPetstoreImpl.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── Error.java │ │ │ │ ├── ErrorException.java │ │ │ │ ├── ListPetsHeaders.java │ │ │ │ ├── Pet.java │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ ├── NodeJS │ │ │ ├── lib │ │ │ │ ├── models │ │ │ │ │ ├── errorModel.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── pet.js │ │ │ │ └── swaggerPetstore.js │ │ │ └── package.json │ │ ├── Python │ │ │ └── cowstore │ │ │ │ ├── __init__.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── error.py │ │ │ │ └── pet.py │ │ │ │ ├── swagger_petstore.py │ │ │ │ └── version.py │ │ ├── Ruby │ │ │ └── generated │ │ │ │ ├── petstore.rb │ │ │ │ └── petstore │ │ │ │ ├── models │ │ │ │ ├── error.rb │ │ │ │ └── pet.rb │ │ │ │ ├── module_definition.rb │ │ │ │ └── swagger_petstore.rb │ │ ├── petstore.yaml │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 1c-multiple-input-swaggers │ │ ├── Client │ │ │ ├── DataSources.cs │ │ │ ├── DataSourcesExtensions.cs │ │ │ ├── IDataSources.cs │ │ │ ├── IIndexers.cs │ │ │ ├── IIndexes.cs │ │ │ ├── ISearchandStorage.cs │ │ │ ├── IStorageAccounts.cs │ │ │ ├── IUsageOperations.cs │ │ │ ├── Indexers.cs │ │ │ ├── IndexersExtensions.cs │ │ │ ├── Indexes.cs │ │ │ ├── IndexesExtensions.cs │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CorsOptions.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── DataChangeDetectionPolicy.cs │ │ │ │ ├── DataContainer.cs │ │ │ │ ├── DataDeletionDetectionPolicy.cs │ │ │ │ ├── DataSource.cs │ │ │ │ ├── DataSourceCredentials.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── HighWaterMarkChangeDetectionPolicy.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── Indexer.cs │ │ │ │ ├── IndexerExecutionStatus.cs │ │ │ │ ├── IndexerStatus.cs │ │ │ │ ├── IndexingParameters.cs │ │ │ │ ├── ItemError.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── ScoringFunctionAggregation.cs │ │ │ │ ├── ScoringFunctionInterpolation.cs │ │ │ │ ├── SearchRequestOptions.cs │ │ │ │ ├── SoftDeleteColumnDeletionDetectionPolicy.cs │ │ │ │ ├── SqlIntegratedChangeTrackingPolicy.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountListResult.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── SuggesterSearchMode.cs │ │ │ │ ├── TagScoringParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageListResult.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ ├── SearchandStorage.cs │ │ │ ├── StorageAccounts.cs │ │ │ ├── StorageAccountsExtensions.cs │ │ │ ├── UsageOperations.cs │ │ │ └── UsageOperationsExtensions.cs │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 1d-common-settings │ │ ├── base │ │ │ └── folder │ │ │ │ ├── AzureClient │ │ │ │ ├── IStorageAccountsOperations.cs │ │ │ │ ├── IStorageManagementClient.cs │ │ │ │ ├── IUsageOperations.cs │ │ │ │ ├── Models │ │ │ │ │ ├── AccountStatus.cs │ │ │ │ │ ├── AccountType.cs │ │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ │ ├── CustomDomain.cs │ │ │ │ │ ├── Endpoints.cs │ │ │ │ │ ├── Page.cs │ │ │ │ │ ├── ProvisioningState.cs │ │ │ │ │ ├── Reason.cs │ │ │ │ │ ├── Resource.cs │ │ │ │ │ ├── StorageAccount.cs │ │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ │ ├── Usage.cs │ │ │ │ │ ├── UsageName.cs │ │ │ │ │ └── UsageUnit.cs │ │ │ │ ├── StorageAccountsOperations.cs │ │ │ │ ├── StorageAccountsOperationsExtensions.cs │ │ │ │ ├── StorageManagementClient.cs │ │ │ │ ├── UsageOperations.cs │ │ │ │ └── UsageOperationsExtensions.cs │ │ │ │ └── Client │ │ │ │ ├── IStorageAccounts.cs │ │ │ │ ├── IStorageManagementClient.cs │ │ │ │ ├── IUsageOperations.cs │ │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountListResult.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageListResult.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ │ ├── StorageAccounts.cs │ │ │ │ ├── StorageAccountsExtensions.cs │ │ │ │ ├── StorageManagementClient.cs │ │ │ │ ├── UsageOperations.cs │ │ │ │ └── UsageOperationsExtensions.cs │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 1e-help │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 1f-output-to-stdout │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.yaml │ ├── 2a-validation │ │ ├── CSharp │ │ │ ├── IStorageAccountsOperations.cs │ │ │ ├── IStorageManagementClient.cs │ │ │ ├── IUsageOperations.cs │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── Page.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ ├── StorageAccountsOperations.cs │ │ │ ├── StorageAccountsOperationsExtensions.cs │ │ │ ├── StorageManagementClient.cs │ │ │ ├── UsageOperations.cs │ │ │ └── UsageOperationsExtensions.cs │ │ ├── Java │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── StorageAccounts.java │ │ │ │ ├── StorageManagementClient.java │ │ │ │ ├── Usages.java │ │ │ │ ├── implementation │ │ │ │ ├── StorageAccountsImpl.java │ │ │ │ ├── StorageManagementClientImpl.java │ │ │ │ ├── UsagesImpl.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── AccountStatus.java │ │ │ │ ├── AccountType.java │ │ │ │ ├── CheckNameAvailabilityResult.java │ │ │ │ ├── CustomDomain.java │ │ │ │ ├── Endpoints.java │ │ │ │ ├── PageImpl.java │ │ │ │ ├── ProvisioningState.java │ │ │ │ ├── Reason.java │ │ │ │ ├── StorageAccount.java │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.java │ │ │ │ ├── StorageAccountCreateParameters.java │ │ │ │ ├── StorageAccountKeys.java │ │ │ │ ├── StorageAccountRegenerateKeyParameters.java │ │ │ │ ├── StorageAccountUpdateParameters.java │ │ │ │ ├── Usage.java │ │ │ │ ├── UsageName.java │ │ │ │ ├── UsageUnit.java │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ ├── NodeJS │ │ │ ├── LICENSE.txt │ │ │ ├── lib │ │ │ │ ├── models │ │ │ │ │ ├── checkNameAvailabilityResult.js │ │ │ │ │ ├── customDomain.js │ │ │ │ │ ├── endpoints.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── resource.js │ │ │ │ │ ├── storageAccount.js │ │ │ │ │ ├── storageAccountCheckNameAvailabilityParameters.js │ │ │ │ │ ├── storageAccountCreateParameters.js │ │ │ │ │ ├── storageAccountKeys.js │ │ │ │ │ ├── storageAccountListResult.js │ │ │ │ │ ├── storageAccountRegenerateKeyParameters.js │ │ │ │ │ ├── storageAccountUpdateParameters.js │ │ │ │ │ ├── usage.js │ │ │ │ │ ├── usageListResult.js │ │ │ │ │ └── usageName.js │ │ │ │ ├── operations │ │ │ │ │ ├── index.js │ │ │ │ │ ├── storageAccounts.js │ │ │ │ │ └── usageOperations.js │ │ │ │ └── storageManagementClient.js │ │ │ └── package.json │ │ ├── Python │ │ │ └── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── check_name_availability_result.py │ │ │ │ ├── custom_domain.py │ │ │ │ ├── endpoints.py │ │ │ │ ├── resource.py │ │ │ │ ├── storage_account.py │ │ │ │ ├── storage_account_check_name_availability_parameters.py │ │ │ │ ├── storage_account_create_parameters.py │ │ │ │ ├── storage_account_keys.py │ │ │ │ ├── storage_account_paged.py │ │ │ │ ├── storage_account_regenerate_key_parameters.py │ │ │ │ ├── storage_account_update_parameters.py │ │ │ │ ├── storage_management_client_enums.py │ │ │ │ ├── usage.py │ │ │ │ ├── usage_name.py │ │ │ │ └── usage_paged.py │ │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── storage_accounts_operations.py │ │ │ │ └── usage_operations.py │ │ │ │ ├── storage_management_client.py │ │ │ │ └── version.py │ │ ├── Ruby │ │ │ └── 2015-06-15 │ │ │ │ └── generated │ │ │ │ ├── storage.rb │ │ │ │ └── storage │ │ │ │ ├── models │ │ │ │ ├── account_status.rb │ │ │ │ ├── account_type.rb │ │ │ │ ├── check_name_availability_result.rb │ │ │ │ ├── custom_domain.rb │ │ │ │ ├── endpoints.rb │ │ │ │ ├── provisioning_state.rb │ │ │ │ ├── reason.rb │ │ │ │ ├── resource.rb │ │ │ │ ├── storage_account.rb │ │ │ │ ├── storage_account_check_name_availability_parameters.rb │ │ │ │ ├── storage_account_create_parameters.rb │ │ │ │ ├── storage_account_keys.rb │ │ │ │ ├── storage_account_list_result.rb │ │ │ │ ├── storage_account_regenerate_key_parameters.rb │ │ │ │ ├── storage_account_update_parameters.rb │ │ │ │ ├── usage.rb │ │ │ │ ├── usage_list_result.rb │ │ │ │ ├── usage_name.rb │ │ │ │ └── usage_unit.rb │ │ │ │ ├── module_definition.rb │ │ │ │ ├── storage_accounts.rb │ │ │ │ ├── storage_management_client.rb │ │ │ │ └── usage_operations.rb │ │ ├── readme.md.disabled │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 2b-suppressions │ │ ├── readme.md.disabled │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 3a-literate-swagger │ │ ├── Client │ │ │ ├── IQueryKeysOperations.cs │ │ │ ├── ISearchManagementClient.cs │ │ │ ├── IServicesOperations.cs │ │ │ ├── Models │ │ │ │ ├── AzureAsyncOperationResult.cs │ │ │ │ ├── Error.cs │ │ │ │ ├── ErrorDetails.cs │ │ │ │ ├── ErrorException.cs │ │ │ │ ├── ListQueryKeysResult.cs │ │ │ │ ├── NetworkOperationStatus.cs │ │ │ │ ├── NetworkOperationStatusConverter.cs │ │ │ │ ├── QueryKey.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── SearchServiceCreateOrUpdateParameters.cs │ │ │ │ ├── SearchServiceListResult.cs │ │ │ │ ├── SearchServiceProperties.cs │ │ │ │ ├── SearchServiceResource.cs │ │ │ │ └── SubResource.cs │ │ │ ├── QueryKeysOperations.cs │ │ │ ├── QueryKeysOperationsExtensions.cs │ │ │ ├── SearchManagementClient.cs │ │ │ ├── ServicesOperations.cs │ │ │ └── ServicesOperationsExtensions.cs │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── swagger.md │ ├── 3b-custom-transformations │ │ ├── Client │ │ │ ├── CheckNameAvailabilityOperations.cs │ │ │ ├── CheckNameAvailabilityOperationsExtensions.cs │ │ │ ├── ICheckNameAvailabilityOperations.cs │ │ │ ├── IStorageAccounts.cs │ │ │ ├── IStorageManagementClient.cs │ │ │ ├── IUsagesOperations.cs │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── Page.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ ├── StorageAccounts.cs │ │ │ ├── StorageAccountsExtensions.cs │ │ │ ├── StorageManagementClient.cs │ │ │ ├── UsagesOperations.cs │ │ │ ├── UsagesOperationsExtensions.cs │ │ │ └── code-model-v1.norm.yaml │ │ ├── generated │ │ │ ├── configuration.yaml │ │ │ └── pipeline.yaml │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 3c-guards │ │ ├── Client │ │ │ ├── IStorageAccounts.cs │ │ │ ├── IStorageManagementClient.cs │ │ │ ├── IUsageOperations.cs │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountListResult.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageListResult.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ ├── StorageAccounts.cs │ │ │ ├── StorageAccountsExtensions.cs │ │ │ ├── StorageManagementClient.cs │ │ │ ├── UsageOperations.cs │ │ │ └── UsageOperationsExtensions.cs │ │ ├── OtherClient │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── StorageAccounts.java │ │ │ │ ├── StorageManagementClient.java │ │ │ │ ├── Usages.java │ │ │ │ ├── implementation │ │ │ │ ├── StorageAccountsImpl.java │ │ │ │ ├── StorageManagementClientImpl.java │ │ │ │ ├── UsagesImpl.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── AccountStatus.java │ │ │ │ ├── AccountType.java │ │ │ │ ├── CheckNameAvailabilityResult.java │ │ │ │ ├── CustomDomain.java │ │ │ │ ├── Endpoints.java │ │ │ │ ├── ProvisioningState.java │ │ │ │ ├── Reason.java │ │ │ │ ├── Resource.java │ │ │ │ ├── StorageAccount.java │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.java │ │ │ │ ├── StorageAccountCreateParameters.java │ │ │ │ ├── StorageAccountKeys.java │ │ │ │ ├── StorageAccountListResult.java │ │ │ │ ├── StorageAccountRegenerateKeyParameters.java │ │ │ │ ├── StorageAccountUpdateParameters.java │ │ │ │ ├── Usage.java │ │ │ │ ├── UsageListResult.java │ │ │ │ ├── UsageName.java │ │ │ │ ├── UsageUnit.java │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 3d-custom-validation │ │ ├── Client │ │ │ ├── IStorageAccounts.cs │ │ │ ├── IStorageManagementClient.cs │ │ │ ├── IUsageOperations.cs │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountListResult.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageListResult.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ ├── StorageAccounts.cs │ │ │ ├── StorageAccountsExtensions.cs │ │ │ ├── StorageManagementClient.cs │ │ │ ├── UsageOperations.cs │ │ │ └── UsageOperationsExtensions.cs │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 3e-batch-mode │ │ ├── output1 │ │ │ ├── IStorageAccountsOperations.cs │ │ │ ├── IStorageManagementClient.cs │ │ │ ├── IUsageOperations.cs │ │ │ ├── Models │ │ │ │ ├── AccountStatus.cs │ │ │ │ ├── AccountType.cs │ │ │ │ ├── CheckNameAvailabilityResult.cs │ │ │ │ ├── CustomDomain.cs │ │ │ │ ├── Endpoints.cs │ │ │ │ ├── Page.cs │ │ │ │ ├── ProvisioningState.cs │ │ │ │ ├── Reason.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── StorageAccount.cs │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.cs │ │ │ │ ├── StorageAccountCreateParameters.cs │ │ │ │ ├── StorageAccountKeys.cs │ │ │ │ ├── StorageAccountRegenerateKeyParameters.cs │ │ │ │ ├── StorageAccountUpdateParameters.cs │ │ │ │ ├── Usage.cs │ │ │ │ ├── UsageName.cs │ │ │ │ └── UsageUnit.cs │ │ │ ├── StorageAccountsOperations.cs │ │ │ ├── StorageAccountsOperationsExtensions.cs │ │ │ ├── StorageManagementClient.cs │ │ │ ├── UsageOperations.cs │ │ │ └── UsageOperationsExtensions.cs │ │ ├── output2 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── StorageAccounts.java │ │ │ │ ├── StorageManagementClient.java │ │ │ │ ├── Usages.java │ │ │ │ ├── implementation │ │ │ │ ├── StorageAccountsImpl.java │ │ │ │ ├── StorageManagementClientImpl.java │ │ │ │ ├── UsagesImpl.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── AccountStatus.java │ │ │ │ ├── AccountType.java │ │ │ │ ├── CheckNameAvailabilityResult.java │ │ │ │ ├── CustomDomain.java │ │ │ │ ├── Endpoints.java │ │ │ │ ├── ProvisioningState.java │ │ │ │ ├── Reason.java │ │ │ │ ├── Resource.java │ │ │ │ ├── StorageAccount.java │ │ │ │ ├── StorageAccountCheckNameAvailabilityParameters.java │ │ │ │ ├── StorageAccountCreateParameters.java │ │ │ │ ├── StorageAccountKeys.java │ │ │ │ ├── StorageAccountListResult.java │ │ │ │ ├── StorageAccountRegenerateKeyParameters.java │ │ │ │ ├── StorageAccountUpdateParameters.java │ │ │ │ ├── Usage.java │ │ │ │ ├── UsageListResult.java │ │ │ │ ├── UsageName.java │ │ │ │ ├── UsageUnit.java │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ ├── output3 │ │ │ └── generated │ │ │ │ ├── advisor.rb │ │ │ │ └── advisor │ │ │ │ ├── composed_cowbell_client.rb │ │ │ │ ├── models │ │ │ │ ├── account_status.rb │ │ │ │ ├── account_type.rb │ │ │ │ ├── category.rb │ │ │ │ ├── check_name_availability_result.rb │ │ │ │ ├── custom_domain.rb │ │ │ │ ├── endpoints.rb │ │ │ │ ├── impact.rb │ │ │ │ ├── operation_display_info.rb │ │ │ │ ├── operation_entity.rb │ │ │ │ ├── operation_entity_list_result.rb │ │ │ │ ├── provisioning_state.rb │ │ │ │ ├── reason.rb │ │ │ │ ├── resource.rb │ │ │ │ ├── resource_recommendation_base.rb │ │ │ │ ├── resource_recommendation_base_list_result.rb │ │ │ │ ├── risk.rb │ │ │ │ ├── short_description.rb │ │ │ │ ├── storage_account.rb │ │ │ │ ├── storage_account_check_name_availability_parameters.rb │ │ │ │ ├── storage_account_create_parameters.rb │ │ │ │ ├── storage_account_keys.rb │ │ │ │ ├── storage_account_list_result.rb │ │ │ │ ├── storage_account_regenerate_key_parameters.rb │ │ │ │ ├── storage_account_update_parameters.rb │ │ │ │ ├── suppression_contract.rb │ │ │ │ ├── suppression_contract_list_result.rb │ │ │ │ ├── usage.rb │ │ │ │ ├── usage_list_result.rb │ │ │ │ ├── usage_name.rb │ │ │ │ └── usage_unit.rb │ │ │ │ ├── module_definition.rb │ │ │ │ ├── operations.rb │ │ │ │ ├── recommendations.rb │ │ │ │ ├── storage_accounts.rb │ │ │ │ ├── suppressions.rb │ │ │ │ └── usage_operations.rb │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 3f-example-generation │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── 3g-require-config │ │ ├── .gitignore │ │ ├── Client │ │ │ └── SwaggerPetstore.cs │ │ ├── pétstöre.json │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ └── 3h-try-require │ │ ├── .gitignore │ │ ├── Client │ │ └── SwaggerPetstore.cs │ │ ├── pétstöre.json │ │ ├── readme.csharp.md │ │ ├── readme.md │ │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt ├── openapi-v3 │ └── 1a-code-generation-minimal │ │ ├── Client │ │ ├── ISwaggerPetstore.cs │ │ ├── Models │ │ │ ├── Error.cs │ │ │ ├── ErrorException.cs │ │ │ ├── ListPetsHeaders.cs │ │ │ └── Pet.cs │ │ ├── SwaggerPetstore.cs │ │ └── SwaggerPetstoreExtensions.cs │ │ ├── petstore.yaml │ │ ├── readme.md │ │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt ├── readme.md └── test │ ├── additional-properties-boolean │ ├── Client │ │ ├── CowbellUniversity.cs │ │ ├── ICowbellUniversity.cs │ │ └── Models │ │ │ ├── Cowbell1a.cs │ │ │ ├── Cowbell1b.cs │ │ │ ├── Cowbell2a.cs │ │ │ └── Cowbell2b.cs │ ├── add-props-bool.yaml │ ├── readme.md │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── deprecated │ ├── ClientCSharp │ │ ├── Deprecated.cs │ │ ├── IDeprecated.cs │ │ ├── IPath.cs │ │ ├── Models │ │ │ ├── ChildPet.cs │ │ │ ├── Enum1Custom.cs │ │ │ ├── Enum1No.cs │ │ │ ├── Enum1Replaced.cs │ │ │ ├── Enum1Yes.cs │ │ │ ├── Enum2Custom.cs │ │ │ ├── Enum2CustomConverter.cs │ │ │ ├── Enum2No.cs │ │ │ ├── Enum2NoConverter.cs │ │ │ ├── Enum2Replaced.cs │ │ │ ├── Enum2ReplacedConverter.cs │ │ │ ├── Enum2Yes.cs │ │ │ ├── Enum2YesConverter.cs │ │ │ ├── Enum3Custom.cs │ │ │ ├── Enum3No.cs │ │ │ ├── Enum3Replaced.cs │ │ │ ├── Enum3Yes.cs │ │ │ ├── Pet.cs │ │ │ ├── PetCustom.cs │ │ │ ├── PetNo.cs │ │ │ ├── PetReplaced.cs │ │ │ └── PetYes.cs │ │ ├── Path.cs │ │ └── PathExtensions.cs │ ├── ClientGo │ │ ├── api │ │ │ └── interfaces.go │ │ ├── client.go │ │ ├── models.go │ │ ├── path.go │ │ └── version.go │ ├── ClientJava │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── Deprecated.java │ │ │ ├── Paths.java │ │ │ ├── implementation │ │ │ ├── DeprecatedImpl.java │ │ │ ├── PathsImpl.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── ChildPet.java │ │ │ ├── Enum1Custom.java │ │ │ ├── Enum1No.java │ │ │ ├── Enum1Replaced.java │ │ │ ├── Enum1Yes.java │ │ │ ├── Enum2Custom.java │ │ │ ├── Enum2No.java │ │ │ ├── Enum2Replaced.java │ │ │ ├── Enum2Yes.java │ │ │ ├── Enum3Custom.java │ │ │ ├── Enum3No.java │ │ │ ├── Enum3Replaced.java │ │ │ ├── Enum3Yes.java │ │ │ ├── Pet.java │ │ │ ├── PetCustom.java │ │ │ ├── PetNo.java │ │ │ ├── PetReplaced.java │ │ │ ├── PetYes.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ ├── ClientNode │ │ ├── lib │ │ │ ├── deprecated.js │ │ │ ├── models │ │ │ │ ├── childPet.js │ │ │ │ ├── index.js │ │ │ │ ├── pet.js │ │ │ │ ├── petCustom.js │ │ │ │ ├── petNo.js │ │ │ │ ├── petReplaced.js │ │ │ │ └── petYes.js │ │ │ └── operations │ │ │ │ ├── index.js │ │ │ │ └── path.js │ │ └── package.json │ ├── ClientPython │ │ └── deprecated │ │ │ ├── __init__.py │ │ │ ├── deprecated.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── child_pet.py │ │ │ ├── deprecated_enums.py │ │ │ ├── pet.py │ │ │ ├── pet_custom.py │ │ │ ├── pet_no.py │ │ │ ├── pet_replaced.py │ │ │ └── pet_yes.py │ │ │ ├── operations │ │ │ ├── __init__.py │ │ │ └── path_operations.py │ │ │ └── version.py │ ├── ClientRuby │ │ └── generated │ │ │ ├── deprecated.rb │ │ │ └── deprecated │ │ │ ├── deprecated.rb │ │ │ ├── models │ │ │ ├── child_pet.rb │ │ │ ├── enum1custom.rb │ │ │ ├── enum1no.rb │ │ │ ├── enum1replaced.rb │ │ │ ├── enum1yes.rb │ │ │ ├── enum2custom.rb │ │ │ ├── enum2no.rb │ │ │ ├── enum2replaced.rb │ │ │ ├── enum2yes.rb │ │ │ ├── enum3custom.rb │ │ │ ├── enum3no.rb │ │ │ ├── enum3replaced.rb │ │ │ ├── enum3yes.rb │ │ │ ├── pet.rb │ │ │ ├── pet_custom.rb │ │ │ ├── pet_no.rb │ │ │ ├── pet_replaced.rb │ │ │ └── pet_yes.rb │ │ │ ├── module_definition.rb │ │ │ └── path.rb │ ├── deprecated.yaml │ ├── readme.md │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── empty-class │ ├── Client │ │ ├── ITest.cs │ │ ├── ITestAPI.cs │ │ ├── Models │ │ │ └── EmptyClass.cs │ │ ├── Test.cs │ │ ├── TestAPI.cs │ │ └── TestExtensions.cs │ ├── empty-class.yaml │ ├── readme.md │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── end-to-end │ └── network │ │ ├── Client │ │ ├── ApplicationGatewaysOperations.cs │ │ ├── ApplicationGatewaysOperationsExtensions.cs │ │ ├── BgpServiceCommunitiesOperations.cs │ │ ├── BgpServiceCommunitiesOperationsExtensions.cs │ │ ├── ExpressRouteCircuitAuthorizationsOperations.cs │ │ ├── ExpressRouteCircuitAuthorizationsOperationsExtensions.cs │ │ ├── ExpressRouteCircuitPeeringsOperations.cs │ │ ├── ExpressRouteCircuitPeeringsOperationsExtensions.cs │ │ ├── ExpressRouteCircuitsOperations.cs │ │ ├── ExpressRouteCircuitsOperationsExtensions.cs │ │ ├── ExpressRouteServiceProvidersOperations.cs │ │ ├── ExpressRouteServiceProvidersOperationsExtensions.cs │ │ ├── IApplicationGatewaysOperations.cs │ │ ├── IBgpServiceCommunitiesOperations.cs │ │ ├── IExpressRouteCircuitAuthorizationsOperations.cs │ │ ├── IExpressRouteCircuitPeeringsOperations.cs │ │ ├── IExpressRouteCircuitsOperations.cs │ │ ├── IExpressRouteServiceProvidersOperations.cs │ │ ├── ILoadBalancersOperations.cs │ │ ├── ILocalNetworkGatewaysOperations.cs │ │ ├── INetworkClient.cs │ │ ├── INetworkInterfacesOperations.cs │ │ ├── INetworkSecurityGroupsOperations.cs │ │ ├── INetworkWatchersOperations.cs │ │ ├── IPacketCapturesOperations.cs │ │ ├── IPublicIPAddressesOperations.cs │ │ ├── IRouteFilterRulesOperations.cs │ │ ├── IRouteFiltersOperations.cs │ │ ├── IRouteTablesOperations.cs │ │ ├── IRoutesOperations.cs │ │ ├── ISecurityRulesOperations.cs │ │ ├── ISubnetsOperations.cs │ │ ├── IUsagesOperations.cs │ │ ├── IVirtualNetworkGatewayConnectionsOperations.cs │ │ ├── IVirtualNetworkGatewaysOperations.cs │ │ ├── IVirtualNetworkPeeringsOperations.cs │ │ ├── IVirtualNetworksOperations.cs │ │ ├── LoadBalancersOperations.cs │ │ ├── LoadBalancersOperationsExtensions.cs │ │ ├── LocalNetworkGatewaysOperations.cs │ │ ├── LocalNetworkGatewaysOperationsExtensions.cs │ │ ├── Models │ │ │ ├── Access.cs │ │ │ ├── AddressSpace.cs │ │ │ ├── ApiVersion.cs │ │ │ ├── ApplicationGateway.cs │ │ │ ├── ApplicationGatewayAuthenticationCertificate.cs │ │ │ ├── ApplicationGatewayBackendAddress.cs │ │ │ ├── ApplicationGatewayBackendAddressPool.cs │ │ │ ├── ApplicationGatewayBackendHealth.cs │ │ │ ├── ApplicationGatewayBackendHealthHttpSettings.cs │ │ │ ├── ApplicationGatewayBackendHealthPool.cs │ │ │ ├── ApplicationGatewayBackendHealthServer.cs │ │ │ ├── ApplicationGatewayBackendHealthServerHealth.cs │ │ │ ├── ApplicationGatewayBackendHttpSettings.cs │ │ │ ├── ApplicationGatewayConnectionDraining.cs │ │ │ ├── ApplicationGatewayCookieBasedAffinity.cs │ │ │ ├── ApplicationGatewayFirewallMode.cs │ │ │ ├── ApplicationGatewayFrontendIPConfiguration.cs │ │ │ ├── ApplicationGatewayFrontendPort.cs │ │ │ ├── ApplicationGatewayHttpListener.cs │ │ │ ├── ApplicationGatewayIPConfiguration.cs │ │ │ ├── ApplicationGatewayOperationalState.cs │ │ │ ├── ApplicationGatewayPathRule.cs │ │ │ ├── ApplicationGatewayProbe.cs │ │ │ ├── ApplicationGatewayProtocol.cs │ │ │ ├── ApplicationGatewayRequestRoutingRule.cs │ │ │ ├── ApplicationGatewayRequestRoutingRuleType.cs │ │ │ ├── ApplicationGatewaySku.cs │ │ │ ├── ApplicationGatewaySkuName.cs │ │ │ ├── ApplicationGatewaySslCertificate.cs │ │ │ ├── ApplicationGatewaySslPolicy.cs │ │ │ ├── ApplicationGatewaySslProtocol.cs │ │ │ ├── ApplicationGatewayTier.cs │ │ │ ├── ApplicationGatewayUrlPathMap.cs │ │ │ ├── ApplicationGatewayWebApplicationFirewallConfiguration.cs │ │ │ ├── AssociationType.cs │ │ │ ├── AuthorizationUseStatus.cs │ │ │ ├── AzureAsyncOperationResult.cs │ │ │ ├── BGPCommunity.cs │ │ │ ├── BackendAddressPool.cs │ │ │ ├── BgpPeerState.cs │ │ │ ├── BgpPeerStatus.cs │ │ │ ├── BgpPeerStatusListResult.cs │ │ │ ├── BgpServiceCommunity.cs │ │ │ ├── BgpSettings.cs │ │ │ ├── ConnectionResetSharedKey.cs │ │ │ ├── ConnectionSharedKey.cs │ │ │ ├── DhcpOptions.cs │ │ │ ├── Direction.cs │ │ │ ├── DnsNameAvailabilityResult.cs │ │ │ ├── EffectiveNetworkSecurityGroup.cs │ │ │ ├── EffectiveNetworkSecurityGroupAssociation.cs │ │ │ ├── EffectiveNetworkSecurityGroupListResult.cs │ │ │ ├── EffectiveNetworkSecurityRule.cs │ │ │ ├── EffectiveRoute.cs │ │ │ ├── EffectiveRouteListResult.cs │ │ │ ├── EffectiveRouteSource.cs │ │ │ ├── EffectiveRouteState.cs │ │ │ ├── Error.cs │ │ │ ├── ErrorDetails.cs │ │ │ ├── ExpressRouteCircuit.cs │ │ │ ├── ExpressRouteCircuitArpTable.cs │ │ │ ├── ExpressRouteCircuitAuthorization.cs │ │ │ ├── ExpressRouteCircuitPeering.cs │ │ │ ├── ExpressRouteCircuitPeeringAdvertisedPublicPrefixState.cs │ │ │ ├── ExpressRouteCircuitPeeringConfig.cs │ │ │ ├── ExpressRouteCircuitPeeringState.cs │ │ │ ├── ExpressRouteCircuitPeeringType.cs │ │ │ ├── ExpressRouteCircuitRoutesTable.cs │ │ │ ├── ExpressRouteCircuitRoutesTableSummary.cs │ │ │ ├── ExpressRouteCircuitServiceProviderProperties.cs │ │ │ ├── ExpressRouteCircuitSku.cs │ │ │ ├── ExpressRouteCircuitSkuFamily.cs │ │ │ ├── ExpressRouteCircuitSkuTier.cs │ │ │ ├── ExpressRouteCircuitStats.cs │ │ │ ├── ExpressRouteCircuitsArpTableListResult.cs │ │ │ ├── ExpressRouteCircuitsRoutesTableListResult.cs │ │ │ ├── ExpressRouteCircuitsRoutesTableSummaryListResult.cs │ │ │ ├── ExpressRouteServiceProvider.cs │ │ │ ├── ExpressRouteServiceProviderBandwidthsOffered.cs │ │ │ ├── FlowLogInformation.cs │ │ │ ├── FlowLogStatusParameters.cs │ │ │ ├── FrontendIPConfiguration.cs │ │ │ ├── GatewayRoute.cs │ │ │ ├── GatewayRouteListResult.cs │ │ │ ├── IPAddressAvailabilityResult.cs │ │ │ ├── IPAllocationMethod.cs │ │ │ ├── IPConfiguration.cs │ │ │ ├── IPVersion.cs │ │ │ ├── InboundNatPool.cs │ │ │ ├── InboundNatRule.cs │ │ │ ├── LoadBalancer.cs │ │ │ ├── LoadBalancingRule.cs │ │ │ ├── LoadDistribution.cs │ │ │ ├── LocalNetworkGateway.cs │ │ │ ├── NetworkInterface.cs │ │ │ ├── NetworkInterfaceAssociation.cs │ │ │ ├── NetworkInterfaceDnsSettings.cs │ │ │ ├── NetworkInterfaceIPConfiguration.cs │ │ │ ├── NetworkOperationStatus.cs │ │ │ ├── NetworkSecurityGroup.cs │ │ │ ├── NetworkWatcher.cs │ │ │ ├── NextHopParameters.cs │ │ │ ├── NextHopResult.cs │ │ │ ├── NextHopType.cs │ │ │ ├── OutboundNatRule.cs │ │ │ ├── PacketCapture.cs │ │ │ ├── PacketCaptureFilter.cs │ │ │ ├── PacketCaptureParameters.cs │ │ │ ├── PacketCaptureQueryStatusResult.cs │ │ │ ├── PacketCaptureResult.cs │ │ │ ├── PacketCaptureStorageLocation.cs │ │ │ ├── Page.cs │ │ │ ├── Page1.cs │ │ │ ├── PatchRouteFilter.cs │ │ │ ├── PatchRouteFilterRule.cs │ │ │ ├── PcError.cs │ │ │ ├── PcProtocol.cs │ │ │ ├── PcStatus.cs │ │ │ ├── Probe.cs │ │ │ ├── ProbeProtocol.cs │ │ │ ├── ProcessorArchitecture.cs │ │ │ ├── Protocol.cs │ │ │ ├── ProvisioningState.cs │ │ │ ├── PublicIPAddress.cs │ │ │ ├── PublicIPAddressDnsSettings.cs │ │ │ ├── QueryTroubleshootingParameters.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceNavigationLink.cs │ │ │ ├── RetentionPolicyParameters.cs │ │ │ ├── Route.cs │ │ │ ├── RouteFilter.cs │ │ │ ├── RouteFilterRule.cs │ │ │ ├── RouteFilterRuleType.cs │ │ │ ├── RouteNextHopType.cs │ │ │ ├── RouteTable.cs │ │ │ ├── SecurityGroupNetworkInterface.cs │ │ │ ├── SecurityGroupViewParameters.cs │ │ │ ├── SecurityGroupViewResult.cs │ │ │ ├── SecurityRule.cs │ │ │ ├── SecurityRuleAccess.cs │ │ │ ├── SecurityRuleAssociations.cs │ │ │ ├── SecurityRuleDirection.cs │ │ │ ├── SecurityRuleProtocol.cs │ │ │ ├── ServiceProviderProvisioningState.cs │ │ │ ├── SubResource.cs │ │ │ ├── Subnet.cs │ │ │ ├── SubnetAssociation.cs │ │ │ ├── Topology.cs │ │ │ ├── TopologyAssociation.cs │ │ │ ├── TopologyParameters.cs │ │ │ ├── TopologyResource.cs │ │ │ ├── TransportProtocol.cs │ │ │ ├── TroubleshootingDetails.cs │ │ │ ├── TroubleshootingParameters.cs │ │ │ ├── TroubleshootingRecommendedActions.cs │ │ │ ├── TroubleshootingResult.cs │ │ │ ├── TunnelConnectionHealth.cs │ │ │ ├── Usage.cs │ │ │ ├── UsageName.cs │ │ │ ├── UsageUnit.cs │ │ │ ├── VerificationIPFlowParameters.cs │ │ │ ├── VerificationIPFlowResult.cs │ │ │ ├── VirtualNetwork.cs │ │ │ ├── VirtualNetworkGateway.cs │ │ │ ├── VirtualNetworkGatewayConnection.cs │ │ │ ├── VirtualNetworkGatewayConnectionStatus.cs │ │ │ ├── VirtualNetworkGatewayConnectionType.cs │ │ │ ├── VirtualNetworkGatewayIPConfiguration.cs │ │ │ ├── VirtualNetworkGatewaySku.cs │ │ │ ├── VirtualNetworkGatewaySkuName.cs │ │ │ ├── VirtualNetworkGatewaySkuTier.cs │ │ │ ├── VirtualNetworkGatewayType.cs │ │ │ ├── VirtualNetworkPeering.cs │ │ │ ├── VirtualNetworkPeeringState.cs │ │ │ ├── VpnClientConfiguration.cs │ │ │ ├── VpnClientParameters.cs │ │ │ ├── VpnClientRevokedCertificate.cs │ │ │ ├── VpnClientRootCertificate.cs │ │ │ └── VpnType.cs │ │ ├── NetworkClient.cs │ │ ├── NetworkClientExtensions.cs │ │ ├── NetworkInterfacesOperations.cs │ │ ├── NetworkInterfacesOperationsExtensions.cs │ │ ├── NetworkSecurityGroupsOperations.cs │ │ ├── NetworkSecurityGroupsOperationsExtensions.cs │ │ ├── NetworkWatchersOperations.cs │ │ ├── NetworkWatchersOperationsExtensions.cs │ │ ├── PacketCapturesOperations.cs │ │ ├── PacketCapturesOperationsExtensions.cs │ │ ├── PublicIPAddressesOperations.cs │ │ ├── PublicIPAddressesOperationsExtensions.cs │ │ ├── RouteFilterRulesOperations.cs │ │ ├── RouteFilterRulesOperationsExtensions.cs │ │ ├── RouteFiltersOperations.cs │ │ ├── RouteFiltersOperationsExtensions.cs │ │ ├── RouteTablesOperations.cs │ │ ├── RouteTablesOperationsExtensions.cs │ │ ├── RoutesOperations.cs │ │ ├── RoutesOperationsExtensions.cs │ │ ├── SecurityRulesOperations.cs │ │ ├── SecurityRulesOperationsExtensions.cs │ │ ├── SubnetsOperations.cs │ │ ├── SubnetsOperationsExtensions.cs │ │ ├── UsagesOperations.cs │ │ ├── UsagesOperationsExtensions.cs │ │ ├── VirtualNetworkGatewayConnectionsOperations.cs │ │ ├── VirtualNetworkGatewayConnectionsOperationsExtensions.cs │ │ ├── VirtualNetworkGatewaysOperations.cs │ │ ├── VirtualNetworkGatewaysOperationsExtensions.cs │ │ ├── VirtualNetworkPeeringsOperations.cs │ │ ├── VirtualNetworkPeeringsOperationsExtensions.cs │ │ ├── VirtualNetworksOperations.cs │ │ └── VirtualNetworksOperationsExtensions.cs │ │ ├── readme.md │ │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── error-behavior │ ├── config-bad-syntax │ │ ├── readme.md │ │ └── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ ├── openapi-bad-schema │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.yaml │ ├── openapi-json-bad-syntax │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.json │ ├── openapi-json-good │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.json │ ├── openapi-md-bad-fence │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.md │ ├── openapi-md-bad-syntax │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.md │ ├── openapi-md-good │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.md │ ├── openapi-not-swagger │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.json │ ├── openapi-yaml-bad-file-reference │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.yaml │ ├── openapi-yaml-bad-reference │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.yaml │ ├── openapi-yaml-bad-syntax │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.yaml │ ├── openapi-yaml-bad-type │ │ ├── Client │ │ │ ├── CowbellFactory.cs │ │ │ ├── ICowbellFactory.cs │ │ │ └── Models │ │ │ │ └── Cowbell.cs │ │ ├── readme.md │ │ ├── shell │ │ │ ├── code.txt │ │ │ ├── stderr.txt │ │ │ └── stdout.txt │ │ └── tiny.yaml │ └── openapi-yaml-good │ │ ├── Client │ │ ├── CowbellFactory.cs │ │ ├── CowbellOperations.cs │ │ ├── CowbellOperationsExtensions.cs │ │ ├── ICowbellFactory.cs │ │ ├── ICowbellOperations.cs │ │ └── Models │ │ │ └── Cowbell.cs │ │ ├── readme.md │ │ ├── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ │ └── tiny.yaml │ ├── hidden-methods │ ├── Client │ │ ├── CowbellFactory.cs │ │ ├── CowbellOperations.cs │ │ ├── CowbellOperationsExtensions.cs │ │ ├── ICowbellFactory.cs │ │ ├── ICowbellOperations.cs │ │ ├── Models │ │ │ └── Cowbell.cs │ │ └── code-model-v1.yaml │ ├── ClientFancy │ │ ├── CowbellFactory.cs │ │ ├── CowbellOperations.cs │ │ ├── CowbellOperationsExtensions.cs │ │ ├── ICowbellFactory.cs │ │ ├── ICowbellOperations.cs │ │ ├── Models │ │ │ └── Cowbell.cs │ │ └── code-model-v1.yaml │ ├── hidden-methods.yaml │ ├── readme.md │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── multi-level-inheritance │ ├── ClientCSharp │ │ ├── CowbellInspection.cs │ │ ├── ICowbellInspection.cs │ │ └── Models │ │ │ ├── Cowbell.cs │ │ │ ├── CowbellBase.cs │ │ │ ├── CowbellKing.cs │ │ │ └── SecureString.cs │ ├── inheritance.yaml │ ├── readme.md │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── reflect-api-versions │ ├── .gitignore │ ├── SdkClient │ │ ├── SdkInfo_Compute.cs │ │ └── SdkInfo_ComputeManagementClient.cs │ ├── readme.md │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── remove-methods │ ├── Client │ │ ├── CowbellFactory.cs │ │ ├── CowbellOperations.cs │ │ ├── CowbellOperationsExtensions.cs │ │ ├── ICowbellFactory.cs │ │ ├── ICowbellOperations.cs │ │ └── Models │ │ │ └── Cowbell.cs │ ├── ClientFancy │ │ ├── CowbellFactory.cs │ │ ├── CowbellOperations.cs │ │ ├── CowbellOperationsExtensions.cs │ │ ├── ICowbellFactory.cs │ │ ├── ICowbellOperations.cs │ │ └── Models │ │ │ └── Cowbell.cs │ ├── readme.md │ ├── remove-methods.yaml │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── shared-response-header-types │ ├── Client │ │ ├── BatchAccountOperations.cs │ │ ├── BatchAccountOperationsExtensions.cs │ │ ├── BatchManagementDummyClient.cs │ │ ├── IBatchAccountOperations.cs │ │ ├── IBatchManagementDummyClient.cs │ │ └── Models │ │ │ ├── AutoStorageBaseProperties.cs │ │ │ ├── BatchAccount.cs │ │ │ ├── BatchAccountCreateParameters.cs │ │ │ ├── BatchAccountDeleteHeaders.cs │ │ │ ├── BatchAccountUpdateParameters.cs │ │ │ ├── KeyVaultReference.cs │ │ │ ├── Operation.cs │ │ │ ├── OperationDisplay.cs │ │ │ ├── Resource.cs │ │ │ └── RetryHeader.cs │ ├── readme.md │ ├── shared-headers.yaml │ └── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ ├── stream-with-content-type │ ├── ClientCSharp │ │ ├── CowbellModerator.cs │ │ ├── ICowbellModerator.cs │ │ ├── IImage.cs │ │ ├── IText.cs │ │ ├── Image.cs │ │ ├── ImageExtensions.cs │ │ ├── Models │ │ │ ├── ContentTypes.cs │ │ │ ├── ContentTypesConverter.cs │ │ │ ├── ImageType.cs │ │ │ ├── ImageTypeRestricted.cs │ │ │ ├── ImageTypeRestrictedStrings.cs │ │ │ └── ImageTypeRestrictedStringsConverter.cs │ │ ├── Text.cs │ │ └── TextExtensions.cs │ ├── ClientGo │ │ ├── api │ │ │ └── interfaces.go │ │ ├── client.go │ │ ├── image.go │ │ ├── models.go │ │ ├── text.go │ │ └── version.go │ ├── ClientJava │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── CowbellModerator.java │ │ │ ├── Images.java │ │ │ ├── Texts.java │ │ │ ├── implementation │ │ │ ├── CowbellModeratorImpl.java │ │ │ ├── ImagesImpl.java │ │ │ ├── TextsImpl.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── ContentTypes.java │ │ │ ├── ImageType.java │ │ │ ├── ImageTypeRestricted.java │ │ │ ├── ImageTypeRestrictedStrings.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ ├── ClientNode │ │ ├── lib │ │ │ ├── cowbellModerator.js │ │ │ └── operations │ │ │ │ ├── image.js │ │ │ │ ├── index.js │ │ │ │ └── text.js │ │ └── package.json │ ├── ClientPython │ │ └── streamwithcontenttype │ │ │ ├── __init__.py │ │ │ ├── cowbell_moderator.py │ │ │ ├── models │ │ │ └── cowbell_moderator_enums.py │ │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── image_operations.py │ │ │ └── text_operations.py │ │ │ └── version.py │ ├── readme.md │ ├── shell │ │ ├── code.txt │ │ ├── stderr.txt │ │ └── stdout.txt │ └── stream-with-content-type.yaml │ └── use-default-in-constructor │ ├── Client │ ├── CowbellFactory.cs │ ├── CowbellOperations.cs │ ├── CowbellOperationsExtensions.cs │ ├── ICowbellFactory.cs │ ├── ICowbellOperations.cs │ └── Models │ │ └── Cowbell.cs │ ├── ClientFancy │ ├── CowbellFactory.cs │ ├── CowbellOperations.cs │ ├── CowbellOperationsExtensions.cs │ ├── ICowbellFactory.cs │ ├── ICowbellOperations.cs │ └── Models │ │ └── Cowbell.cs │ ├── property-defaults.yaml │ ├── readme.md │ └── shell │ ├── code.txt │ ├── stderr.txt │ └── stdout.txt ├── common ├── config │ ├── rush │ │ ├── .npmrc │ │ ├── .npmrc-publish │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── pnpm-config.json │ │ ├── pnpm-lock.yaml │ │ ├── repo-state.json │ │ └── version-policies.json │ └── webpack.base.config.js └── scripts │ ├── install-run-rush-pnpm.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ └── install-run.js ├── cspell.yaml ├── docker ├── all │ ├── readme.md │ └── ubuntu │ │ └── Dockerfile ├── base │ ├── readme.md │ └── ubuntu │ │ └── Dockerfile ├── build.sh ├── dotnet │ ├── readme.md │ └── ubuntu │ │ └── Dockerfile ├── java │ ├── readme.md │ └── ubuntu │ │ └── Dockerfile └── python │ ├── readme.md │ └── ubuntu │ └── Dockerfile ├── docs ├── client │ └── readme.md ├── dashboard.html ├── deduplication.md ├── developer │ ├── conventions.md │ ├── feature-status-tracking.md │ ├── readme.md │ └── writing-an-extension.md ├── docker.md ├── extensions │ ├── readme.md │ └── swagger-extensions-examples │ │ ├── x-ms-code-generation-settings │ │ ├── rawcode.txt │ │ ├── readme.md │ │ └── x-ms-code-generation-settings.yaml │ │ ├── x-ms-discriminator-value │ │ ├── rawcode.txt │ │ ├── readme.md │ │ └── x-ms-discriminator.yaml │ │ └── x-ms-parameterized-host │ │ └── x-ms-parameterized-host.yaml ├── faq.md ├── generate │ ├── authentication.md │ ├── built-in-directives.md │ ├── directives.md │ ├── examples │ │ ├── basic │ │ │ └── readme.md │ │ ├── multilanguage │ │ │ ├── readme.java.md │ │ │ ├── readme.md │ │ │ └── readme.python.md │ │ └── tags │ │ │ └── readme.md │ ├── flags.md │ ├── how-autorest-generates-code-from-openapi.md │ ├── readme.md │ └── suppress-warnings.md ├── images │ ├── autorest-flat.png │ ├── autorest-logo.svg │ ├── autorest-pipeline.png │ ├── autorest-small-flat.png │ ├── autorest-small.png │ ├── autorest.png │ ├── clients-proj-setup-include.png │ ├── clients-proj-setup-nuget.png │ ├── clients-proj-setup-showallfiles.png │ ├── glasses.png │ ├── logo.png │ └── normal.png ├── install │ ├── autorest-versioning.md │ ├── images │ │ └── autorestCoreVersion.png │ ├── installing-via-nvm.md │ ├── installing-via-nvs.md │ └── readme.md ├── internal │ └── autorest-partners.md ├── introduction.md ├── migrate │ └── readme.md ├── openapi │ ├── examples │ │ ├── pets.json │ │ ├── pets.yaml │ │ ├── petsv2.json │ │ └── pollingPaging.json │ ├── formats.md │ ├── howto │ │ ├── $ref-siblings.md │ │ ├── archboard_feedback.md │ │ ├── binary-payload.md │ │ └── polymorphism.md │ ├── prechecker.md │ ├── readme.md │ └── request-body.md ├── readme.md ├── releases │ ├── images │ │ ├── installation-failure.png │ │ ├── logger-after.png │ │ ├── logger-before.png │ │ ├── m4-error-source.png │ │ └── progress-install.gif │ ├── july-2021.md │ ├── july-2022.md │ ├── march-2022.md │ ├── november-2021.md │ ├── readme.md │ └── september-2021.md ├── stylesheets │ ├── github-light.css │ ├── normalize.css │ └── stylesheet.css ├── troubleshooting.md └── user │ ├── command-line-interface.md │ ├── configuration.md │ ├── literate-file-formats │ ├── configuration.md │ ├── openapi.md │ └── readme.md │ └── readme.md ├── eng ├── bump-for-prerelease.js ├── pipelines │ ├── ci.yaml │ ├── publish-dev.yaml │ ├── publish.yaml │ ├── resources │ │ └── tryit-comment-template.md │ ├── scripts │ │ └── get-tryit-github-comment.ps1 │ └── templates │ │ ├── 1es-redirect.yml │ │ ├── build-and-push-docker.yaml │ │ ├── build.yaml │ │ ├── create-tryit-comment.yaml │ │ ├── regression-tests.yaml │ │ ├── smoke-tests.yaml │ │ └── variables │ │ └── image.yml ├── scripts │ ├── check-for-changed-files.js │ ├── check-format.js │ ├── format.js │ ├── helpers.js │ ├── publish.mjs │ └── watch.js └── strip-json-comments.js ├── jest.default.config.js ├── labels.yml ├── markdown-link-check-config.json ├── packages ├── apps │ └── autorest │ │ ├── .eslintignore │ │ ├── .eslintrc.yaml │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .scripts │ │ └── preinstall-check.js │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── definitions │ │ ├── core.d.ts │ │ ├── index.d.ts │ │ └── vscode.d.ts │ │ ├── entrypoints │ │ └── app.js │ │ ├── jest.config.js │ │ ├── jest.e2e.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ ├── actions │ │ │ ├── check-autorest-update.ts │ │ │ ├── clear-temp-data.ts │ │ │ └── index.ts │ │ ├── app.ts │ │ ├── args.ts │ │ ├── autorest-as-a-service.ts │ │ ├── commands │ │ │ ├── index.ts │ │ │ ├── reset.ts │ │ │ ├── show-available-core-versions.ts │ │ │ └── show-installed-extensions.ts │ │ ├── constants.ts │ │ ├── exports.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ │ ├── test │ │ ├── failure.e2e.ts │ │ └── setup-jest-e2e.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── webpack.config.js ├── extensions │ ├── core │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── definitions │ │ │ └── index.d.ts │ │ ├── entrypoints │ │ │ ├── app.js │ │ │ └── language-service.js │ │ ├── jest.config.js │ │ ├── jest.e2e.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── app.ts │ │ │ ├── artifact-writer.test.ts │ │ │ ├── artifact-writer.ts │ │ │ ├── commands │ │ │ │ ├── help.ts │ │ │ │ └── index.ts │ │ │ ├── exports.ts │ │ │ ├── language-service │ │ │ │ ├── document-analysis.ts │ │ │ │ ├── language-service.ts │ │ │ │ └── source-map.ts │ │ │ └── lib │ │ │ │ ├── array.ts │ │ │ │ ├── artifact.ts │ │ │ │ ├── autorest-core.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── context │ │ │ │ ├── autorest-context-loader.ts │ │ │ │ ├── autorest-context.ts │ │ │ │ ├── index.ts │ │ │ │ └── message-emitter.ts │ │ │ │ ├── document-type.ts │ │ │ │ ├── events.ts │ │ │ │ ├── message.ts │ │ │ │ ├── outstanding-task-awaiter.ts │ │ │ │ ├── pipeline │ │ │ │ ├── common.ts │ │ │ │ ├── pipeline-builder.ts │ │ │ │ ├── pipeline-cache.ts │ │ │ │ ├── pipeline.ts │ │ │ │ ├── plugin-api.ts │ │ │ │ ├── plugin-endpoint.ts │ │ │ │ └── plugin-loader.ts │ │ │ │ ├── plugins │ │ │ │ ├── allof-cleaner.ts │ │ │ │ ├── command.ts │ │ │ │ ├── component-key-renamer.ts │ │ │ │ ├── component-modifier.ts │ │ │ │ ├── components-cleaner.ts │ │ │ │ ├── conversion.ts │ │ │ │ ├── deduplicator.ts │ │ │ │ ├── emitter.ts │ │ │ │ ├── enum-deduplication │ │ │ │ │ ├── enum-deduplication-plugin.ts │ │ │ │ │ ├── enum-deduplicator.test.ts │ │ │ │ │ ├── enum-deduplicator.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── external.ts │ │ │ │ ├── full-ref-resolver │ │ │ │ │ ├── full-ref-resolver-plugin.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── help.ts │ │ │ │ ├── identity │ │ │ │ │ ├── identity-plugin.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── normalize-identity-plugin.test.ts │ │ │ │ │ ├── normalize-identity-plugin.ts │ │ │ │ │ ├── reset-identity-plugin.test.ts │ │ │ │ │ └── reset-identity-plugin.ts │ │ │ │ ├── index.ts │ │ │ │ ├── loaders │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── openapi-loader.test.ts │ │ │ │ │ ├── openapi-loader.ts │ │ │ │ │ ├── referenced-file-resolver.ts │ │ │ │ │ ├── swagger-loader.test.ts │ │ │ │ │ └── swagger-loader.ts │ │ │ │ ├── merger.ts │ │ │ │ ├── metadata-generation.ts │ │ │ │ ├── new-composer.ts │ │ │ │ ├── openapi-stats-collector │ │ │ │ │ ├── index.ts │ │ │ │ │ └── openapi-stats-collector.ts │ │ │ │ ├── profile-filter.ts │ │ │ │ ├── save-in-place │ │ │ │ │ ├── index.ts │ │ │ │ │ └── save-in-place.ts │ │ │ │ ├── schema-validation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── json-schema-validator.ts │ │ │ │ │ ├── openapi3-schema-validator.test.ts │ │ │ │ │ ├── openapi3-schema-validator.ts │ │ │ │ │ ├── schema-validation-plugins.ts │ │ │ │ │ ├── swagger-schema-validator.test.ts │ │ │ │ │ └── swagger-schema-validator.ts │ │ │ │ ├── semantics-validation │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── semantics-validation-plugin.ts │ │ │ │ │ ├── semantics-validation.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── validators │ │ │ │ │ │ ├── discriminator-validator.test.ts │ │ │ │ │ │ ├── discriminator-validator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── outdated-extension-validator.ts │ │ │ │ │ │ ├── paths-validator.test.ts │ │ │ │ │ │ ├── paths-validator.ts │ │ │ │ │ │ ├── refs-siblings-validator.test.ts │ │ │ │ │ │ └── refs-siblings-validator.ts │ │ │ │ ├── subset-schemas-deduplicator.ts │ │ │ │ ├── transformer │ │ │ │ │ ├── eval.test.ts │ │ │ │ │ ├── eval.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── manipulation.ts │ │ │ │ │ ├── object-manipulator.test.ts │ │ │ │ │ ├── object-manipulator.ts │ │ │ │ │ └── transformer.ts │ │ │ │ ├── tree-shaker │ │ │ │ │ ├── tree-shaker.test.ts │ │ │ │ │ └── tree-shaker.ts │ │ │ │ └── version-param-handler.ts │ │ │ │ ├── sleep.ts │ │ │ │ └── stats │ │ │ │ ├── index.ts │ │ │ │ ├── stats-collector.ts │ │ │ │ └── stats.ts │ │ ├── test │ │ │ ├── blaming │ │ │ │ ├── blaming-on-error.e2e.ts │ │ │ │ └── resources │ │ │ │ │ ├── error-in-config │ │ │ │ │ ├── duplicate-key-yaml.md │ │ │ │ │ └── invalid-indent-yaml.md │ │ │ │ │ └── error-in-spec │ │ │ │ │ ├── openapi-schema-error.json │ │ │ │ │ ├── swagger-schema-error.json │ │ │ │ │ └── swagger-semantic-error.json │ │ │ ├── configuration.e2e.ts │ │ │ ├── end-to-end.e2e.ts │ │ │ ├── eventing.test.ts │ │ │ ├── final-state-schema.e2e.ts │ │ │ ├── modifiers.e2e.ts │ │ │ ├── plugins │ │ │ │ ├── components-cleaner │ │ │ │ │ ├── components-cleaner.test.ts │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── polymorphism.json │ │ │ │ │ │ └── some-unused-secondary-components.json │ │ │ │ │ └── inputs │ │ │ │ │ │ ├── all-secondary-components-referenced.json │ │ │ │ │ │ ├── components-extensions.json │ │ │ │ │ │ ├── no-secondary-file-components.json │ │ │ │ │ │ ├── polymorphism.json │ │ │ │ │ │ ├── schema-with-$ref-property.json │ │ │ │ │ │ └── some-unused-secondary-components.json │ │ │ │ └── merger │ │ │ │ │ ├── expected │ │ │ │ │ ├── discriminator-mapping.json │ │ │ │ │ ├── final-state-schema.json │ │ │ │ │ └── pet-store.json │ │ │ │ │ ├── inputs │ │ │ │ │ ├── discriminator-mapping │ │ │ │ │ │ └── discriminator-mapping.json │ │ │ │ │ ├── final-state-schema │ │ │ │ │ │ └── actionGroups.json │ │ │ │ │ ├── pet-store │ │ │ │ │ │ ├── input.json │ │ │ │ │ │ └── input2.json │ │ │ │ │ └── server-relative-url │ │ │ │ │ │ ├── input1.json │ │ │ │ │ │ ├── input2.json │ │ │ │ │ │ └── no-server.json │ │ │ │ │ └── merger.test.ts │ │ │ ├── resources │ │ │ │ ├── code-model.yaml │ │ │ │ ├── final-state-schema │ │ │ │ │ ├── networkcloud.json │ │ │ │ │ └── types.json │ │ │ │ ├── literate-example │ │ │ │ │ ├── readme-complicated.md │ │ │ │ │ ├── readme-composite.md │ │ │ │ │ ├── readme-single.md │ │ │ │ │ └── swagger.md │ │ │ │ ├── openapi3-loading │ │ │ │ │ ├── non-oa3-file1.yaml │ │ │ │ │ ├── non-oa3-file2.yaml │ │ │ │ │ ├── oa3-file1.yaml │ │ │ │ │ └── oa3-file2.yaml │ │ │ │ ├── swagger-loading │ │ │ │ │ ├── non-swagger-file1.yaml │ │ │ │ │ ├── non-swagger-file2.yaml │ │ │ │ │ ├── swagger-file1.json │ │ │ │ │ ├── swagger-file2.json │ │ │ │ │ └── swagger-file3.yaml │ │ │ │ └── tiny.yaml │ │ │ └── setup-jest.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── modelerfour │ │ ├── .eslintignore │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── checker │ │ │ │ ├── checker.ts │ │ │ │ └── plugin-checker.ts │ │ │ ├── example │ │ │ │ ├── example.ts │ │ │ │ └── plugin-flattener.ts │ │ │ ├── flattener │ │ │ │ ├── flattener.ts │ │ │ │ └── plugin-flattener.ts │ │ │ ├── grouper │ │ │ │ ├── grouper.ts │ │ │ │ └── plugin-grouper.ts │ │ │ ├── main.ts │ │ │ ├── modeler │ │ │ │ ├── body-processor.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── interpretations.ts │ │ │ │ ├── modelerfour-options.ts │ │ │ │ ├── modelerfour.ts │ │ │ │ ├── plugin-modelerfour.ts │ │ │ │ ├── schema-utils.ts │ │ │ │ ├── security-processor.test.ts │ │ │ │ ├── security-processor.ts │ │ │ │ ├── utils.test.ts │ │ │ │ └── utils.ts │ │ │ ├── prenamer │ │ │ │ ├── naming-utils.ts │ │ │ │ ├── plugin-prenamer.ts │ │ │ │ └── prenamer.ts │ │ │ ├── quality-precheck │ │ │ │ ├── duplicate-schema-merger.ts │ │ │ │ └── prechecker.ts │ │ │ └── utils.ts │ │ ├── test │ │ │ ├── modeler │ │ │ │ ├── modelerfour-utils.ts │ │ │ │ ├── modelerfour.requests.body.test.ts │ │ │ │ ├── modelerfour.requests.test.ts │ │ │ │ ├── modelerfour.schemas.test.ts │ │ │ │ └── modelerfour.test.ts │ │ │ ├── prenamer │ │ │ │ └── prenamer.test.ts │ │ │ ├── quality-precheck │ │ │ │ └── prechecker.test.ts │ │ │ ├── scenarios │ │ │ │ ├── expected │ │ │ │ │ ├── body-binary-json │ │ │ │ │ │ └── modeler.yaml │ │ │ │ │ ├── custom-content-type-parm │ │ │ │ │ │ └── modeler.yaml │ │ │ │ │ └── nested-dictionaries │ │ │ │ │ │ └── modeler.yaml │ │ │ │ ├── inputs │ │ │ │ │ ├── body-binary-json │ │ │ │ │ │ └── openapi-document.json │ │ │ │ │ ├── custom-content-type-parm │ │ │ │ │ │ └── openapi-document.json │ │ │ │ │ └── nested-dictionaries │ │ │ │ │ │ └── openapi-document.json │ │ │ │ └── scenarios.test.ts │ │ │ ├── setup-jest.ts │ │ │ └── utils │ │ │ │ ├── codemodel-utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schema-utils.ts │ │ │ │ ├── specs.ts │ │ │ │ └── test-session.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ └── openapi-to-typespec │ │ ├── .eslintignore │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── convert.ps1 │ │ ├── package.json │ │ ├── src │ │ ├── autorest-session.ts │ │ ├── constants.ts │ │ ├── data-types.ts │ │ ├── emiters │ │ │ ├── emit-arm-resources.ts │ │ │ ├── emit-client.ts │ │ │ ├── emit-main.ts │ │ │ ├── emit-models.ts │ │ │ ├── emit-package.ts │ │ │ ├── emit-routes.ts │ │ │ └── emit-typespec-config.ts │ │ ├── generate │ │ │ ├── generate-arm-resource.ts │ │ │ ├── generate-client.ts │ │ │ ├── generate-enums.ts │ │ │ ├── generate-object.ts │ │ │ ├── generate-operations.ts │ │ │ ├── generate-parameter.ts │ │ │ └── generate-service-information.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── main.ts │ │ ├── model.ts │ │ ├── options.ts │ │ ├── paths.ts │ │ ├── pretransforms │ │ │ ├── arm-pretransform.ts │ │ │ ├── name-pretransform.ts │ │ │ └── rename-pretransform.ts │ │ ├── resource │ │ │ ├── constants.ts │ │ │ ├── find-parent.ts │ │ │ ├── operation-set.ts │ │ │ ├── parse-metadata.ts │ │ │ ├── resource-equivalent.ts │ │ │ └── utils.ts │ │ ├── transforms │ │ │ ├── transform-arm-resources.ts │ │ │ ├── transform-choices.ts │ │ │ ├── transform-object.ts │ │ │ ├── transform-operations.ts │ │ │ └── transform-service-information.ts │ │ └── utils │ │ │ ├── alias.ts │ │ │ ├── decorators.ts │ │ │ ├── discriminator.ts │ │ │ ├── docs.ts │ │ │ ├── envelope-property.ts │ │ │ ├── errors.ts │ │ │ ├── format.ts │ │ │ ├── get-endpoint.ts │ │ │ ├── imports.ts │ │ │ ├── library-type-mapping.ts │ │ │ ├── logger.ts │ │ │ ├── lro.ts │ │ │ ├── metadata.ts │ │ │ ├── model-generation.ts │ │ │ ├── namespace.ts │ │ │ ├── operation-group.ts │ │ │ ├── operations.ts │ │ │ ├── paging.ts │ │ │ ├── resource-discovery.ts │ │ │ ├── resources.ts │ │ │ ├── response.ts │ │ │ ├── schemas.ts │ │ │ ├── strings.ts │ │ │ ├── suppressions.ts │ │ │ ├── type-mapping.ts │ │ │ └── values.ts │ │ ├── test │ │ ├── analyzeText │ │ │ ├── readme.md │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── 2022-05-01 │ │ │ │ │ └── analyzetext-authoring │ │ │ │ │ ├── SuccessfulCancelTrainingJob.json │ │ │ │ │ ├── SuccessfulCreateProject.json │ │ │ │ │ ├── SuccessfulDeleteDeployment.json │ │ │ │ │ ├── SuccessfulDeleteModel.json │ │ │ │ │ ├── SuccessfulDeleteProject.json │ │ │ │ │ ├── SuccessfulDeployProject.json │ │ │ │ │ ├── SuccessfulExportProject.json │ │ │ │ │ ├── SuccessfulGetDeployment.json │ │ │ │ │ ├── SuccessfulGetDeploymentStatus.json │ │ │ │ │ ├── SuccessfulGetExportStatus.json │ │ │ │ │ ├── SuccessfulGetImportStatus.json │ │ │ │ │ ├── SuccessfulGetModel.json │ │ │ │ │ ├── SuccessfulGetModelEvaluation.json │ │ │ │ │ ├── SuccessfulGetModelEvaluationSummary.json │ │ │ │ │ ├── SuccessfulGetProject.json │ │ │ │ │ ├── SuccessfulGetProjectDeletionStatus.json │ │ │ │ │ ├── SuccessfulGetSupportedLanguages.json │ │ │ │ │ ├── SuccessfulGetSupportedTrainingConfigVersions.json │ │ │ │ │ ├── SuccessfulGetSwapDeploymentsStatus.json │ │ │ │ │ ├── SuccessfulGetTrainStatus.json │ │ │ │ │ ├── SuccessfulImportProject.json │ │ │ │ │ ├── SuccessfulListDeployments.json │ │ │ │ │ ├── SuccessfulListModels.json │ │ │ │ │ ├── SuccessfulListProjects.json │ │ │ │ │ ├── SuccessfulListTrainingJobs.json │ │ │ │ │ ├── SuccessfulSwapDeployments.json │ │ │ │ │ └── SuccessfulTrainProject.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── package.json │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── anomalyDetector │ │ │ ├── readme.md │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── ChangePointDetect.json │ │ │ │ │ ├── DeleteModel.json │ │ │ │ │ ├── DetectAnomaly.json │ │ │ │ │ ├── EntireDetect.json │ │ │ │ │ ├── GetModel.json │ │ │ │ │ ├── GetResult.json │ │ │ │ │ ├── LastDetect.json │ │ │ │ │ ├── LastDetectAnomaly.json │ │ │ │ │ ├── ListModel.json │ │ │ │ │ └── TrainModel.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── v1.1-preview.1 │ │ │ │ │ ├── ChangePointDetect.json │ │ │ │ │ ├── DeleteModel.json │ │ │ │ │ ├── DetectAnomaly.json │ │ │ │ │ ├── EntireDetect.json │ │ │ │ │ ├── GetModel.json │ │ │ │ │ ├── GetResult.json │ │ │ │ │ ├── LastDetect.json │ │ │ │ │ ├── LastDetectAnomaly.json │ │ │ │ │ ├── ListModel.json │ │ │ │ │ └── TrainModel.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-agrifood │ │ │ ├── agrifood.md │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── CheckNameAvailability_CheckNameAvailability_AlreadyExists.json │ │ │ │ │ ├── CheckNameAvailability_CheckNameAvailability_Available.json │ │ │ │ │ ├── DataConnectors_CreateOrUpdate.json │ │ │ │ │ ├── DataConnectors_Delete.json │ │ │ │ │ ├── DataConnectors_Get.json │ │ │ │ │ ├── DataConnectors_List.json │ │ │ │ │ ├── DataManagerForAgricultureExtensions_Get.json │ │ │ │ │ ├── DataManagerForAgricultureExtensions_List.json │ │ │ │ │ ├── DataManagerForAgricultureResources_CreateOrUpdate.json │ │ │ │ │ ├── DataManagerForAgricultureResources_Delete.json │ │ │ │ │ ├── DataManagerForAgricultureResources_Get.json │ │ │ │ │ ├── DataManagerForAgricultureResources_ListByResourceGroup.json │ │ │ │ │ ├── DataManagerForAgricultureResources_ListBySubscription.json │ │ │ │ │ ├── DataManagerForAgricultureResources_Update.json │ │ │ │ │ ├── Extensions_CreateOrUpdate.json │ │ │ │ │ ├── Extensions_Delete.json │ │ │ │ │ ├── Extensions_Get.json │ │ │ │ │ ├── Extensions_ListByDataManagerForAgriculture.json │ │ │ │ │ ├── OperationResults_Get.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── PrivateEndpointConnections_CreateOrUpdate.json │ │ │ │ │ ├── PrivateEndpointConnections_Delete.json │ │ │ │ │ ├── PrivateEndpointConnections_Get.json │ │ │ │ │ ├── PrivateEndpointConnections_ListByResource.json │ │ │ │ │ ├── PrivateLinkResources_Get.json │ │ │ │ │ ├── PrivateLinkResources_ListByResource.json │ │ │ │ │ ├── SolutionsDiscoverability_Get.json │ │ │ │ │ ├── SolutionsDiscoverability_List.json │ │ │ │ │ ├── Solutions_CreateOrUpdate.json │ │ │ │ │ ├── Solutions_Delete.json │ │ │ │ │ ├── Solutions_Get.json │ │ │ │ │ └── Solutions_List.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── DataConnector.tsp │ │ │ │ ├── DataManagerForAgriculture.tsp │ │ │ │ ├── DataManagerForAgricultureExtension.tsp │ │ │ │ ├── DataManagerForAgricultureSolution.tsp │ │ │ │ ├── Extension.tsp │ │ │ │ ├── PrivateEndpointConnection.tsp │ │ │ │ ├── PrivateLinkResource.tsp │ │ │ │ ├── Solution.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2023-06-01-preview │ │ │ │ │ ├── CheckNameAvailability_CheckNameAvailability_AlreadyExists.json │ │ │ │ │ ├── CheckNameAvailability_CheckNameAvailability_Available.json │ │ │ │ │ ├── DataConnectors_CreateOrUpdate.json │ │ │ │ │ ├── DataConnectors_Delete.json │ │ │ │ │ ├── DataConnectors_Get.json │ │ │ │ │ ├── DataConnectors_List.json │ │ │ │ │ ├── DataManagerForAgricultureExtensions_Get.json │ │ │ │ │ ├── DataManagerForAgricultureExtensions_List.json │ │ │ │ │ ├── DataManagerForAgricultureResources_CreateOrUpdate.json │ │ │ │ │ ├── DataManagerForAgricultureResources_Delete.json │ │ │ │ │ ├── DataManagerForAgricultureResources_Get.json │ │ │ │ │ ├── DataManagerForAgricultureResources_ListByResourceGroup.json │ │ │ │ │ ├── DataManagerForAgricultureResources_ListBySubscription.json │ │ │ │ │ ├── DataManagerForAgricultureResources_Update.json │ │ │ │ │ ├── Extensions_CreateOrUpdate.json │ │ │ │ │ ├── Extensions_Delete.json │ │ │ │ │ ├── Extensions_Get.json │ │ │ │ │ ├── Extensions_ListByDataManagerForAgriculture.json │ │ │ │ │ ├── OperationResults_Get.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── PrivateEndpointConnections_CreateOrUpdate.json │ │ │ │ │ ├── PrivateEndpointConnections_Delete.json │ │ │ │ │ ├── PrivateEndpointConnections_Get.json │ │ │ │ │ ├── PrivateEndpointConnections_ListByResource.json │ │ │ │ │ ├── PrivateLinkResources_Get.json │ │ │ │ │ ├── PrivateLinkResources_ListByResource.json │ │ │ │ │ ├── SolutionsDiscoverability_Get.json │ │ │ │ │ ├── SolutionsDiscoverability_List.json │ │ │ │ │ ├── Solutions_CreateOrUpdate.json │ │ │ │ │ ├── Solutions_Delete.json │ │ │ │ │ ├── Solutions_Get.json │ │ │ │ │ └── Solutions_List.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-alertsmanagement │ │ │ ├── alertsmanagement.md │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_add_action_group_all_alerts_in_subscription.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_add_two_action_groups_all_Sev0_Sev1_two_resource_groups.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_from_specific_alert_rule.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_outside_business_hours.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_recurring_maintenance_window.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_specific_VM_one-off_maintenance_window.json │ │ │ │ │ ├── AlertProcessingRules_Delete.json │ │ │ │ │ ├── AlertProcessingRules_GetById.json │ │ │ │ │ ├── AlertProcessingRules_List_ResourceGroup.json │ │ │ │ │ ├── AlertProcessingRules_List_Subscription.json │ │ │ │ │ ├── AlertProcessingRules_Patch.json │ │ │ │ │ ├── AlertsMetaData_MonitorService.json │ │ │ │ │ ├── Alerts_ChangeState.json │ │ │ │ │ ├── Alerts_GetById.json │ │ │ │ │ ├── Alerts_History.json │ │ │ │ │ ├── Alerts_List.json │ │ │ │ │ ├── Alerts_Summary.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── SmartGroups_ChangeState.json │ │ │ │ │ ├── SmartGroups_GetById.json │ │ │ │ │ ├── SmartGroups_History.json │ │ │ │ │ └── SmartGroups_List.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── Alert.tsp │ │ │ │ ├── AlertProcessingRule.tsp │ │ │ │ ├── SmartGroup.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2021-08-08 │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_add_action_group_all_alerts_in_subscription.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_add_two_action_groups_all_Sev0_Sev1_two_resource_groups.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_from_specific_alert_rule.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_outside_business_hours.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_recurring_maintenance_window.json │ │ │ │ │ ├── AlertProcessingRules_Create_or_update_remove_all_action_groups_specific_VM_one-off_maintenance_window.json │ │ │ │ │ ├── AlertProcessingRules_Delete.json │ │ │ │ │ ├── AlertProcessingRules_GetById.json │ │ │ │ │ ├── AlertProcessingRules_List_ResourceGroup.json │ │ │ │ │ ├── AlertProcessingRules_List_Subscription.json │ │ │ │ │ ├── AlertProcessingRules_Patch.json │ │ │ │ │ ├── AlertsMetaData_MonitorService.json │ │ │ │ │ ├── Alerts_ChangeState.json │ │ │ │ │ ├── Alerts_GetById.json │ │ │ │ │ ├── Alerts_History.json │ │ │ │ │ ├── Alerts_List.json │ │ │ │ │ ├── Alerts_Summary.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── SmartGroups_ChangeState.json │ │ │ │ │ ├── SmartGroups_GetById.json │ │ │ │ │ ├── SmartGroups_History.json │ │ │ │ │ └── SmartGroups_List.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-analysisservices │ │ │ ├── analysisservices.md │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── checkNameAvailability.json │ │ │ │ │ ├── createServer.json │ │ │ │ │ ├── deleteServer.json │ │ │ │ │ ├── dissociateGateway.json │ │ │ │ │ ├── getServer.json │ │ │ │ │ ├── listGatewayStatus.json │ │ │ │ │ ├── listServers.json │ │ │ │ │ ├── listServersInResourceGroup.json │ │ │ │ │ ├── listSkusForExisting.json │ │ │ │ │ ├── listSkusForNew.json │ │ │ │ │ ├── resumeServer.json │ │ │ │ │ ├── suspendServer.json │ │ │ │ │ └── updateServer.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── AnalysisServicesServer.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2017-08-01 │ │ │ │ │ ├── checkNameAvailability.json │ │ │ │ │ ├── createServer.json │ │ │ │ │ ├── deleteServer.json │ │ │ │ │ ├── dissociateGateway.json │ │ │ │ │ ├── getServer.json │ │ │ │ │ ├── listGatewayStatus.json │ │ │ │ │ ├── listServers.json │ │ │ │ │ ├── listServersInResourceGroup.json │ │ │ │ │ ├── listSkusForExisting.json │ │ │ │ │ ├── listSkusForNew.json │ │ │ │ │ ├── resumeServer.json │ │ │ │ │ ├── suspendServer.json │ │ │ │ │ └── updateServer.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-apimanagement │ │ │ ├── apimanagement.md │ │ │ ├── resources.json │ │ │ └── tsp-output │ │ │ │ ├── AccessInformationContract.tsp │ │ │ │ ├── ApiContract.tsp │ │ │ │ ├── ApiManagementServiceResource.tsp │ │ │ │ ├── ApiReleaseContract.tsp │ │ │ │ ├── ApiVersionSetContract.tsp │ │ │ │ ├── AuthorizationServerContract.tsp │ │ │ │ ├── BackendContract.tsp │ │ │ │ ├── CacheContract.tsp │ │ │ │ ├── CertificateContract.tsp │ │ │ │ ├── ContentItemContract.tsp │ │ │ │ ├── ContentTypeContract.tsp │ │ │ │ ├── DeletedServiceContract.tsp │ │ │ │ ├── DiagnosticContract.tsp │ │ │ │ ├── EmailTemplateContract.tsp │ │ │ │ ├── GatewayCertificateAuthorityContract.tsp │ │ │ │ ├── GatewayContract.tsp │ │ │ │ ├── GatewayHostnameConfigurationContract.tsp │ │ │ │ ├── GlobalSchemaContract.tsp │ │ │ │ ├── GroupContract.tsp │ │ │ │ ├── IdentityProviderContract.tsp │ │ │ │ ├── IssueAttachmentContract.tsp │ │ │ │ ├── IssueCommentContract.tsp │ │ │ │ ├── IssueContract.tsp │ │ │ │ ├── LoggerContract.tsp │ │ │ │ ├── NamedValueContract.tsp │ │ │ │ ├── NotificationContract.tsp │ │ │ │ ├── OpenidConnectProviderContract.tsp │ │ │ │ ├── OperationContract.tsp │ │ │ │ ├── PolicyContract.tsp │ │ │ │ ├── PortalDelegationSettings.tsp │ │ │ │ ├── PortalRevisionContract.tsp │ │ │ │ ├── PortalSigninSettings.tsp │ │ │ │ ├── PortalSignupSettings.tsp │ │ │ │ ├── PrivateEndpointConnection.tsp │ │ │ │ ├── PrivateLinkResource.tsp │ │ │ │ ├── ProductContract.tsp │ │ │ │ ├── SchemaContract.tsp │ │ │ │ ├── SubscriptionContract.tsp │ │ │ │ ├── TagContract.tsp │ │ │ │ ├── TagDescriptionContract.tsp │ │ │ │ ├── TenantSettingsContract.tsp │ │ │ │ ├── UserContract.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2021-08-01 │ │ │ │ │ ├── ApiManagementApplyNetworkConfigurationUpdates.json │ │ │ │ │ ├── ApiManagementApproveOrRejectPrivateEndpointConnection.json │ │ │ │ │ ├── ApiManagementAuthorizationServerListSecrets.json │ │ │ │ │ ├── ApiManagementBackendReconnect.json │ │ │ │ │ ├── ApiManagementBackupWithAccessKey.json │ │ │ │ │ ├── ApiManagementBackupWithSystemManagedIdentity.json │ │ │ │ │ ├── ApiManagementBackupWithUserAssignedManagedIdentity.json │ │ │ │ │ ├── ApiManagementCreateAILogger.json │ │ │ │ │ ├── ApiManagementCreateApi.json │ │ │ │ │ ├── ApiManagementCreateApiClone.json │ │ │ │ │ ├── ApiManagementCreateApiDiagnostic.json │ │ │ │ │ ├── ApiManagementCreateApiIssue.json │ │ │ │ │ ├── ApiManagementCreateApiIssueAttachment.json │ │ │ │ │ ├── ApiManagementCreateApiIssueComment.json │ │ │ │ │ ├── ApiManagementCreateApiNewVersionUsingExistingApi.json │ │ │ │ │ ├── ApiManagementCreateApiOperation.json │ │ │ │ │ ├── ApiManagementCreateApiOperationPolicy.json │ │ │ │ │ ├── ApiManagementCreateApiOperationTag.json │ │ │ │ │ ├── ApiManagementCreateApiPolicy.json │ │ │ │ │ ├── ApiManagementCreateApiPolicyNonXmlEncoded.json │ │ │ │ │ ├── ApiManagementCreateApiRelease.json │ │ │ │ │ ├── ApiManagementCreateApiRevisionFromExistingApi.json │ │ │ │ │ ├── ApiManagementCreateApiSchema.json │ │ │ │ │ ├── ApiManagementCreateApiTag.json │ │ │ │ │ ├── ApiManagementCreateApiTagDescription.json │ │ │ │ │ ├── ApiManagementCreateApiUsingImportOverrideServiceUrl.json │ │ │ │ │ ├── ApiManagementCreateApiUsingOai3Import.json │ │ │ │ │ ├── ApiManagementCreateApiUsingSwaggerImport.json │ │ │ │ │ ├── ApiManagementCreateApiUsingWadlImport.json │ │ │ │ │ ├── ApiManagementCreateApiVersionSet.json │ │ │ │ │ ├── ApiManagementCreateApiWithOpenIdConnect.json │ │ │ │ │ ├── ApiManagementCreateAuthorizationServer.json │ │ │ │ │ ├── ApiManagementCreateBackendProxyBackend.json │ │ │ │ │ ├── ApiManagementCreateBackendServiceFabric.json │ │ │ │ │ ├── ApiManagementCreateCache.json │ │ │ │ │ ├── ApiManagementCreateCertificate.json │ │ │ │ │ ├── ApiManagementCreateCertificateWithKeyVault.json │ │ │ │ │ ├── ApiManagementCreateContentType.json │ │ │ │ │ ├── ApiManagementCreateContentTypeContentItem.json │ │ │ │ │ ├── ApiManagementCreateDiagnostic.json │ │ │ │ │ ├── ApiManagementCreateEHLogger.json │ │ │ │ │ ├── ApiManagementCreateGateway.json │ │ │ │ │ ├── ApiManagementCreateGatewayApi.json │ │ │ │ │ ├── ApiManagementCreateGatewayCertificateAuthority.json │ │ │ │ │ ├── ApiManagementCreateGatewayHostnameConfiguration.json │ │ │ │ │ ├── ApiManagementCreateGlobalSchema1.json │ │ │ │ │ ├── ApiManagementCreateGlobalSchema2.json │ │ │ │ │ ├── ApiManagementCreateGraphQLApi.json │ │ │ │ │ ├── ApiManagementCreateGroup.json │ │ │ │ │ ├── ApiManagementCreateGroupExternal.json │ │ │ │ │ ├── ApiManagementCreateGroupUser.json │ │ │ │ │ ├── ApiManagementCreateIdentityProvider.json │ │ │ │ │ ├── ApiManagementCreateMultiRegionServiceWithCustomHostname.json │ │ │ │ │ ├── ApiManagementCreateNamedValue.json │ │ │ │ │ ├── ApiManagementCreateNamedValueWithKeyVault.json │ │ │ │ │ ├── ApiManagementCreateNotification.json │ │ │ │ │ ├── ApiManagementCreateNotificationRecipientEmail.json │ │ │ │ │ ├── ApiManagementCreateNotificationRecipientUser.json │ │ │ │ │ ├── ApiManagementCreateOpenIdConnectProvider.json │ │ │ │ │ ├── ApiManagementCreatePolicy.json │ │ │ │ │ ├── ApiManagementCreatePortalRevision.json │ │ │ │ │ ├── ApiManagementCreateProduct.json │ │ │ │ │ ├── ApiManagementCreateProductApi.json │ │ │ │ │ ├── ApiManagementCreateProductGroup.json │ │ │ │ │ ├── ApiManagementCreateProductPolicy.json │ │ │ │ │ ├── ApiManagementCreateProductTag.json │ │ │ │ │ ├── ApiManagementCreateService.json │ │ │ │ │ ├── ApiManagementCreateServiceHavingMsi.json │ │ │ │ │ ├── ApiManagementCreateServiceInVnetWithPublicIP.json │ │ │ │ │ ├── ApiManagementCreateServiceInZones.json │ │ │ │ │ ├── ApiManagementCreateServiceWithCustomHostnameKeyVault.json │ │ │ │ │ ├── ApiManagementCreateServiceWithSystemCertificates.json │ │ │ │ │ ├── ApiManagementCreateServiceWithUserAssignedIdentity.json │ │ │ │ │ ├── ApiManagementCreateSoapPassThroughApiUsingWsdlImport.json │ │ │ │ │ ├── ApiManagementCreateSoapToRestApiUsingWsdlImport.json │ │ │ │ │ ├── ApiManagementCreateSubscription.json │ │ │ │ │ ├── ApiManagementCreateTag.json │ │ │ │ │ ├── ApiManagementCreateTemplate.json │ │ │ │ │ ├── ApiManagementCreateTenantAccess.json │ │ │ │ │ ├── ApiManagementCreateUser.json │ │ │ │ │ ├── ApiManagementCreateWebsocketApi.json │ │ │ │ │ ├── ApiManagementDeleteApi.json │ │ │ │ │ ├── ApiManagementDeleteApiDiagnostic.json │ │ │ │ │ ├── ApiManagementDeleteApiIssue.json │ │ │ │ │ ├── ApiManagementDeleteApiIssueAttachment.json │ │ │ │ │ ├── ApiManagementDeleteApiIssueComment.json │ │ │ │ │ ├── ApiManagementDeleteApiOperation.json │ │ │ │ │ ├── ApiManagementDeleteApiOperationPolicy.json │ │ │ │ │ ├── ApiManagementDeleteApiOperationTag.json │ │ │ │ │ ├── ApiManagementDeleteApiPolicy.json │ │ │ │ │ ├── ApiManagementDeleteApiRelease.json │ │ │ │ │ ├── ApiManagementDeleteApiSchema.json │ │ │ │ │ ├── ApiManagementDeleteApiTag.json │ │ │ │ │ ├── ApiManagementDeleteApiTagDescription.json │ │ │ │ │ ├── ApiManagementDeleteApiVersionSet.json │ │ │ │ │ ├── ApiManagementDeleteAuthorizationServer.json │ │ │ │ │ ├── ApiManagementDeleteBackend.json │ │ │ │ │ ├── ApiManagementDeleteCache.json │ │ │ │ │ ├── ApiManagementDeleteCertificate.json │ │ │ │ │ ├── ApiManagementDeleteContentType.json │ │ │ │ │ ├── ApiManagementDeleteContentTypeContentItem.json │ │ │ │ │ ├── ApiManagementDeleteDiagnostic.json │ │ │ │ │ ├── ApiManagementDeleteGateway.json │ │ │ │ │ ├── ApiManagementDeleteGatewayApi.json │ │ │ │ │ ├── ApiManagementDeleteGatewayCertificateAuthority.json │ │ │ │ │ ├── ApiManagementDeleteGatewayHostnameConfiguration.json │ │ │ │ │ ├── ApiManagementDeleteGlobalSchema.json │ │ │ │ │ ├── ApiManagementDeleteGroup.json │ │ │ │ │ ├── ApiManagementDeleteGroupUser.json │ │ │ │ │ ├── ApiManagementDeleteIdentityProvider.json │ │ │ │ │ ├── ApiManagementDeleteLogger.json │ │ │ │ │ ├── ApiManagementDeleteNamedValue.json │ │ │ │ │ ├── ApiManagementDeleteNotificationRecipientEmail.json │ │ │ │ │ ├── ApiManagementDeleteNotificationRecipientUser.json │ │ │ │ │ ├── ApiManagementDeleteOpenIdConnectProvider.json │ │ │ │ │ ├── ApiManagementDeletePolicy.json │ │ │ │ │ ├── ApiManagementDeletePrivateEndpointConnection.json │ │ │ │ │ ├── ApiManagementDeleteProduct.json │ │ │ │ │ ├── ApiManagementDeleteProductApi.json │ │ │ │ │ ├── ApiManagementDeleteProductGroup.json │ │ │ │ │ ├── ApiManagementDeleteProductPolicy.json │ │ │ │ │ ├── ApiManagementDeleteProductTag.json │ │ │ │ │ ├── ApiManagementDeleteSubscription.json │ │ │ │ │ ├── ApiManagementDeleteTag.json │ │ │ │ │ ├── ApiManagementDeleteTemplate.json │ │ │ │ │ ├── ApiManagementDeleteUser.json │ │ │ │ │ ├── ApiManagementDeletedServicesListBySubscription.json │ │ │ │ │ ├── ApiManagementDeletedServicesPurge.json │ │ │ │ │ ├── ApiManagementGatewayGenerateToken.json │ │ │ │ │ ├── ApiManagementGatewayListKeys.json │ │ │ │ │ ├── ApiManagementGatewayRegenerateKey.json │ │ │ │ │ ├── ApiManagementGetApiContract.json │ │ │ │ │ ├── ApiManagementGetApiDiagnostic.json │ │ │ │ │ ├── ApiManagementGetApiExportInOpenApi2dot0.json │ │ │ │ │ ├── ApiManagementGetApiExportInOpenApi3dot0.json │ │ │ │ │ ├── ApiManagementGetApiIssue.json │ │ │ │ │ ├── ApiManagementGetApiIssueAttachment.json │ │ │ │ │ ├── ApiManagementGetApiIssueComment.json │ │ │ │ │ ├── ApiManagementGetApiOperation.json │ │ │ │ │ ├── ApiManagementGetApiOperationPetStore.json │ │ │ │ │ ├── ApiManagementGetApiOperationPolicy.json │ │ │ │ │ ├── ApiManagementGetApiOperationTag.json │ │ │ │ │ ├── ApiManagementGetApiPolicy.json │ │ │ │ │ ├── ApiManagementGetApiRelease.json │ │ │ │ │ ├── ApiManagementGetApiRevision.json │ │ │ │ │ ├── ApiManagementGetApiSchema.json │ │ │ │ │ ├── ApiManagementGetApiTag.json │ │ │ │ │ ├── ApiManagementGetApiTagDescription.json │ │ │ │ │ ├── ApiManagementGetApiVersionSet.json │ │ │ │ │ ├── ApiManagementGetAuthorizationServer.json │ │ │ │ │ ├── ApiManagementGetBackend.json │ │ │ │ │ ├── ApiManagementGetCache.json │ │ │ │ │ ├── ApiManagementGetCertificate.json │ │ │ │ │ ├── ApiManagementGetCertificateWithKeyVault.json │ │ │ │ │ ├── ApiManagementGetContentType.json │ │ │ │ │ ├── ApiManagementGetContentTypeContentItem.json │ │ │ │ │ ├── ApiManagementGetDeletedServiceByName.json │ │ │ │ │ ├── ApiManagementGetDiagnostic.json │ │ │ │ │ ├── ApiManagementGetGateway.json │ │ │ │ │ ├── ApiManagementGetGatewayCertificateAuthority.json │ │ │ │ │ ├── ApiManagementGetGatewayHostnameConfiguration.json │ │ │ │ │ ├── ApiManagementGetGlobalSchema1.json │ │ │ │ │ ├── ApiManagementGetGlobalSchema2.json │ │ │ │ │ ├── ApiManagementGetGroup.json │ │ │ │ │ ├── ApiManagementGetIdentityProvider.json │ │ │ │ │ ├── ApiManagementGetIssue.json │ │ │ │ │ ├── ApiManagementGetLogger.json │ │ │ │ │ ├── ApiManagementGetNamedValue.json │ │ │ │ │ ├── ApiManagementGetNamedValueWithKeyVault.json │ │ │ │ │ ├── ApiManagementGetNotification.json │ │ │ │ │ ├── ApiManagementGetOpenIdConnectProvider.json │ │ │ │ │ ├── ApiManagementGetPolicy.json │ │ │ │ │ ├── ApiManagementGetPolicyFormat.json │ │ │ │ │ ├── ApiManagementGetPortalRevision.json │ │ │ │ │ ├── ApiManagementGetPrivateEndpointConnection.json │ │ │ │ │ ├── ApiManagementGetPrivateLinkGroupResource.json │ │ │ │ │ ├── ApiManagementGetProduct.json │ │ │ │ │ ├── ApiManagementGetProductPolicy.json │ │ │ │ │ ├── ApiManagementGetProductTag.json │ │ │ │ │ ├── ApiManagementGetQuotaCounterKeys.json │ │ │ │ │ ├── ApiManagementGetQuotaCounterKeysByQuotaPeriod.json │ │ │ │ │ ├── ApiManagementGetReportsByApi.json │ │ │ │ │ ├── ApiManagementGetReportsByGeo.json │ │ │ │ │ ├── ApiManagementGetReportsByOperation.json │ │ │ │ │ ├── ApiManagementGetReportsByProduct.json │ │ │ │ │ ├── ApiManagementGetReportsByRequest.json │ │ │ │ │ ├── ApiManagementGetReportsBySubscription.json │ │ │ │ │ ├── ApiManagementGetReportsByTime.json │ │ │ │ │ ├── ApiManagementGetReportsByUser.json │ │ │ │ │ ├── ApiManagementGetSubscription.json │ │ │ │ │ ├── ApiManagementGetTag.json │ │ │ │ │ ├── ApiManagementGetTemplate.json │ │ │ │ │ ├── ApiManagementGetTenantAccess.json │ │ │ │ │ ├── ApiManagementGetTenantGitAccess.json │ │ │ │ │ ├── ApiManagementGetTenantSettings.json │ │ │ │ │ ├── ApiManagementGetUser.json │ │ │ │ │ ├── ApiManagementGetUserSubscription.json │ │ │ │ │ ├── ApiManagementHeadApi.json │ │ │ │ │ ├── ApiManagementHeadApiDiagnostic.json │ │ │ │ │ ├── ApiManagementHeadApiIssue.json │ │ │ │ │ ├── ApiManagementHeadApiIssueAttachment.json │ │ │ │ │ ├── ApiManagementHeadApiIssueComment.json │ │ │ │ │ ├── ApiManagementHeadApiOperation.json │ │ │ │ │ ├── ApiManagementHeadApiOperationPolicy.json │ │ │ │ │ ├── ApiManagementHeadApiOperationTag.json │ │ │ │ │ ├── ApiManagementHeadApiPolicy.json │ │ │ │ │ ├── ApiManagementHeadApiRelease.json │ │ │ │ │ ├── ApiManagementHeadApiSchema.json │ │ │ │ │ ├── ApiManagementHeadApiTag.json │ │ │ │ │ ├── ApiManagementHeadApiTagDescription.json │ │ │ │ │ ├── ApiManagementHeadApiVersionSet.json │ │ │ │ │ ├── ApiManagementHeadAuthorizationServer.json │ │ │ │ │ ├── ApiManagementHeadBackend.json │ │ │ │ │ ├── ApiManagementHeadCache.json │ │ │ │ │ ├── ApiManagementHeadCertificate.json │ │ │ │ │ ├── ApiManagementHeadContentTypeContentItem.json │ │ │ │ │ ├── ApiManagementHeadDelegationSettings.json │ │ │ │ │ ├── ApiManagementHeadDiagnostic.json │ │ │ │ │ ├── ApiManagementHeadEmailTemplate.json │ │ │ │ │ ├── ApiManagementHeadGateway.json │ │ │ │ │ ├── ApiManagementHeadGatewayApi.json │ │ │ │ │ ├── ApiManagementHeadGatewayCertificateAuthority.json │ │ │ │ │ ├── ApiManagementHeadGatewayHostnameConfiguration.json │ │ │ │ │ ├── ApiManagementHeadGlobalSchema.json │ │ │ │ │ ├── ApiManagementHeadGroup.json │ │ │ │ │ ├── ApiManagementHeadGroupUser.json │ │ │ │ │ ├── ApiManagementHeadIdentityProvider.json │ │ │ │ │ ├── ApiManagementHeadLogger.json │ │ │ │ │ ├── ApiManagementHeadNamedValue.json │ │ │ │ │ ├── ApiManagementHeadNotificationRecipientEmail.json │ │ │ │ │ ├── ApiManagementHeadNotificationRecipientUser.json │ │ │ │ │ ├── ApiManagementHeadOpenIdConnectProvider.json │ │ │ │ │ ├── ApiManagementHeadPolicy.json │ │ │ │ │ ├── ApiManagementHeadPortalRevision.json │ │ │ │ │ ├── ApiManagementHeadProduct.json │ │ │ │ │ ├── ApiManagementHeadProductApi.json │ │ │ │ │ ├── ApiManagementHeadProductGroup.json │ │ │ │ │ ├── ApiManagementHeadProductPolicy.json │ │ │ │ │ ├── ApiManagementHeadProductTag.json │ │ │ │ │ ├── ApiManagementHeadSignInSettings.json │ │ │ │ │ ├── ApiManagementHeadSignUpSettings.json │ │ │ │ │ ├── ApiManagementHeadSubscription.json │ │ │ │ │ ├── ApiManagementHeadTag.json │ │ │ │ │ ├── ApiManagementHeadTenantAccess.json │ │ │ │ │ ├── ApiManagementHeadUser.json │ │ │ │ │ ├── ApiManagementIdentityProviderListSecrets.json │ │ │ │ │ ├── ApiManagementListApiDiagnostics.json │ │ │ │ │ ├── ApiManagementListApiIssueAttachments.json │ │ │ │ │ ├── ApiManagementListApiIssueComments.json │ │ │ │ │ ├── ApiManagementListApiIssues.json │ │ │ │ │ ├── ApiManagementListApiOperationPolicies.json │ │ │ │ │ ├── ApiManagementListApiOperationTags.json │ │ │ │ │ ├── ApiManagementListApiOperations.json │ │ │ │ │ ├── ApiManagementListApiOperationsByTags.json │ │ │ │ │ ├── ApiManagementListApiPolicies.json │ │ │ │ │ ├── ApiManagementListApiProducts.json │ │ │ │ │ ├── ApiManagementListApiReleases.json │ │ │ │ │ ├── ApiManagementListApiRevisions.json │ │ │ │ │ ├── ApiManagementListApiSchemas.json │ │ │ │ │ ├── ApiManagementListApiTagDescriptions.json │ │ │ │ │ ├── ApiManagementListApiTags.json │ │ │ │ │ ├── ApiManagementListApiVersionSets.json │ │ │ │ │ ├── ApiManagementListApis.json │ │ │ │ │ ├── ApiManagementListApisByTags.json │ │ │ │ │ ├── ApiManagementListAuthorizationServers.json │ │ │ │ │ ├── ApiManagementListBackends.json │ │ │ │ │ ├── ApiManagementListCaches.json │ │ │ │ │ ├── ApiManagementListCertificates.json │ │ │ │ │ ├── ApiManagementListContentTypeContentItems.json │ │ │ │ │ ├── ApiManagementListContentTypes.json │ │ │ │ │ ├── ApiManagementListDiagnostics.json │ │ │ │ │ ├── ApiManagementListGatewayApis.json │ │ │ │ │ ├── ApiManagementListGatewayCertificateAuthorities.json │ │ │ │ │ ├── ApiManagementListGatewayHostnameConfigurations.json │ │ │ │ │ ├── ApiManagementListGateways.json │ │ │ │ │ ├── ApiManagementListGlobalSchemas.json │ │ │ │ │ ├── ApiManagementListGroupUsers.json │ │ │ │ │ ├── ApiManagementListGroups.json │ │ │ │ │ ├── ApiManagementListIdentityProviders.json │ │ │ │ │ ├── ApiManagementListIssues.json │ │ │ │ │ ├── ApiManagementListLoggers.json │ │ │ │ │ ├── ApiManagementListNamedValues.json │ │ │ │ │ ├── ApiManagementListNotificationRecipientEmails.json │ │ │ │ │ ├── ApiManagementListNotificationRecipientUsers.json │ │ │ │ │ ├── ApiManagementListNotifications.json │ │ │ │ │ ├── ApiManagementListOpenIdConnectProviders.json │ │ │ │ │ ├── ApiManagementListPolicies.json │ │ │ │ │ ├── ApiManagementListPolicyDescriptions.json │ │ │ │ │ ├── ApiManagementListPortalRevisions.json │ │ │ │ │ ├── ApiManagementListPortalSettings.json │ │ │ │ │ ├── ApiManagementListPrivateEndpointConnections.json │ │ │ │ │ ├── ApiManagementListPrivateLinkGroupResources.json │ │ │ │ │ ├── ApiManagementListProductApis.json │ │ │ │ │ ├── ApiManagementListProductGroups.json │ │ │ │ │ ├── ApiManagementListProductPolicies.json │ │ │ │ │ ├── ApiManagementListProductSubscriptions.json │ │ │ │ │ ├── ApiManagementListProductTags.json │ │ │ │ │ ├── ApiManagementListProducts.json │ │ │ │ │ ├── ApiManagementListProductsByTags.json │ │ │ │ │ ├── ApiManagementListRegions.json │ │ │ │ │ ├── ApiManagementListSKUs-Consumption.json │ │ │ │ │ ├── ApiManagementListSKUs-Dedicated.json │ │ │ │ │ ├── ApiManagementListSecretsPortalSettingsValidationKey.json │ │ │ │ │ ├── ApiManagementListSecretsTenantAccess.json │ │ │ │ │ ├── ApiManagementListServiceBySubscription.json │ │ │ │ │ ├── ApiManagementListServiceBySubscriptionAndResourceGroup.json │ │ │ │ │ ├── ApiManagementListSku.json │ │ │ │ │ ├── ApiManagementListSubscriptions.json │ │ │ │ │ ├── ApiManagementListTagResources.json │ │ │ │ │ ├── ApiManagementListTags.json │ │ │ │ │ ├── ApiManagementListTemplates.json │ │ │ │ │ ├── ApiManagementListTenantAccess.json │ │ │ │ │ ├── ApiManagementListTenantSettings.json │ │ │ │ │ ├── ApiManagementListUserGroups.json │ │ │ │ │ ├── ApiManagementListUserIdentities.json │ │ │ │ │ ├── ApiManagementListUserSubscriptions.json │ │ │ │ │ ├── ApiManagementListUsers.json │ │ │ │ │ ├── ApiManagementNamedValueListValue.json │ │ │ │ │ ├── ApiManagementOpenidConnectProviderListSecrets.json │ │ │ │ │ ├── ApiManagementPerformConnectivityCheck.json │ │ │ │ │ ├── ApiManagementPerformConnectivityCheckHttpConnect.json │ │ │ │ │ ├── ApiManagementPortalSettingsGetDelegation.json │ │ │ │ │ ├── ApiManagementPortalSettingsGetSignIn.json │ │ │ │ │ ├── ApiManagementPortalSettingsGetSignUp.json │ │ │ │ │ ├── ApiManagementPortalSettingsPutDelegation.json │ │ │ │ │ ├── ApiManagementPortalSettingsPutSignIn.json │ │ │ │ │ ├── ApiManagementPortalSettingsPutSignUp.json │ │ │ │ │ ├── ApiManagementPortalSettingsUpdateDelegation.json │ │ │ │ │ ├── ApiManagementPortalSettingsUpdateSignIn.json │ │ │ │ │ ├── ApiManagementPortalSettingsUpdateSignUp.json │ │ │ │ │ ├── ApiManagementRefreshCertificate.json │ │ │ │ │ ├── ApiManagementRefreshNamedValue.json │ │ │ │ │ ├── ApiManagementRestoreWithAccessKey.json │ │ │ │ │ ├── ApiManagementServiceCheckNameAvailability.json │ │ │ │ │ ├── ApiManagementServiceDeleteService.json │ │ │ │ │ ├── ApiManagementServiceGetDomainOwnershipIdentifier.json │ │ │ │ │ ├── ApiManagementServiceGetMultiRegionInternalVnet.json │ │ │ │ │ ├── ApiManagementServiceGetNetworkStatus.json │ │ │ │ │ ├── ApiManagementServiceGetNetworkStatusByLocation.json │ │ │ │ │ ├── ApiManagementServiceGetOutboundNetworkDependenciesEndpoints.json │ │ │ │ │ ├── ApiManagementServiceGetService.json │ │ │ │ │ ├── ApiManagementServiceGetServiceHavingMsi.json │ │ │ │ │ ├── ApiManagementServiceGetSsoToken.json │ │ │ │ │ ├── ApiManagementSubscriptionListSecrets.json │ │ │ │ │ ├── ApiManagementSubscriptionRegeneratePrimaryKey.json │ │ │ │ │ ├── ApiManagementSubscriptionRegenerateSecondaryKey.json │ │ │ │ │ ├── ApiManagementTenantAccessRegenerateKey.json │ │ │ │ │ ├── ApiManagementTenantAccessSyncState.json │ │ │ │ │ ├── ApiManagementTenantConfigurationDeploy.json │ │ │ │ │ ├── ApiManagementTenantConfigurationSave.json │ │ │ │ │ ├── ApiManagementTenantConfigurationValidate.json │ │ │ │ │ ├── ApiManagementUndelete.json │ │ │ │ │ ├── ApiManagementUpdateApi.json │ │ │ │ │ ├── ApiManagementUpdateApiDiagnostic.json │ │ │ │ │ ├── ApiManagementUpdateApiIssue.json │ │ │ │ │ ├── ApiManagementUpdateApiOperation.json │ │ │ │ │ ├── ApiManagementUpdateApiRelease.json │ │ │ │ │ ├── ApiManagementUpdateApiVersionSet.json │ │ │ │ │ ├── ApiManagementUpdateAuthorizationServer.json │ │ │ │ │ ├── ApiManagementUpdateBackend.json │ │ │ │ │ ├── ApiManagementUpdateCache.json │ │ │ │ │ ├── ApiManagementUpdateDiagnostic.json │ │ │ │ │ ├── ApiManagementUpdateGateway.json │ │ │ │ │ ├── ApiManagementUpdateGroup.json │ │ │ │ │ ├── ApiManagementUpdateIdentityProvider.json │ │ │ │ │ ├── ApiManagementUpdateLogger.json │ │ │ │ │ ├── ApiManagementUpdateNamedValue.json │ │ │ │ │ ├── ApiManagementUpdateOpenIdConnectProvider.json │ │ │ │ │ ├── ApiManagementUpdatePortalRevision.json │ │ │ │ │ ├── ApiManagementUpdateProduct.json │ │ │ │ │ ├── ApiManagementUpdateQuotaCounterKey.json │ │ │ │ │ ├── ApiManagementUpdateQuotaCounterKeyByQuotaPeriod.json │ │ │ │ │ ├── ApiManagementUpdateServiceDisableTls10.json │ │ │ │ │ ├── ApiManagementUpdateServicePublisherDetails.json │ │ │ │ │ ├── ApiManagementUpdateServiceToNewVnetAndAZs.json │ │ │ │ │ ├── ApiManagementUpdateSubscription.json │ │ │ │ │ ├── ApiManagementUpdateTag.json │ │ │ │ │ ├── ApiManagementUpdateTemplate.json │ │ │ │ │ ├── ApiManagementUpdateTenantAccess.json │ │ │ │ │ ├── ApiManagementUpdateUser.json │ │ │ │ │ ├── ApiManagementUserConfirmationPasswordSend.json │ │ │ │ │ ├── ApiManagementUserGenerateSsoUrl.json │ │ │ │ │ └── ApiManagementUserToken.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-authorization │ │ │ ├── authorization.md │ │ │ ├── resources.json │ │ │ └── tsp-output │ │ │ │ ├── DenyAssignment.tsp │ │ │ │ ├── ProviderOperationsMetadata.tsp │ │ │ │ ├── RoleAssignment.tsp │ │ │ │ ├── RoleAssignmentSchedule.tsp │ │ │ │ ├── RoleAssignmentScheduleInstance.tsp │ │ │ │ ├── RoleAssignmentScheduleRequest.tsp │ │ │ │ ├── RoleDefinition.tsp │ │ │ │ ├── RoleEligibilitySchedule.tsp │ │ │ │ ├── RoleEligibilityScheduleInstance.tsp │ │ │ │ ├── RoleEligibilityScheduleRequest.tsp │ │ │ │ ├── RoleManagementPolicy.tsp │ │ │ │ ├── RoleManagementPolicyAssignment.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2015-07-01 │ │ │ │ │ ├── CancelRoleAssignmentScheduleRequestByName.json │ │ │ │ │ ├── CancelRoleEligibilityScheduleRequestByName.json │ │ │ │ │ ├── DeleteRoleDefinition.json │ │ │ │ │ ├── ElevateAccess.json │ │ │ │ │ ├── GetAllProviderOperations.json │ │ │ │ │ ├── GetClassicAdministrators.json │ │ │ │ │ ├── GetDenyAssignmentByNameId.json │ │ │ │ │ ├── GetDenyAssignmentsForResource.json │ │ │ │ │ ├── GetEligibleChildResourcesByScope.json │ │ │ │ │ ├── GetPermissions.json │ │ │ │ │ ├── GetProviderOperationsRP.json │ │ │ │ │ ├── GetResourcePermissions.json │ │ │ │ │ ├── GetRoleAssignmentScheduleByName.json │ │ │ │ │ ├── GetRoleAssignmentScheduleInstanceByName.json │ │ │ │ │ ├── GetRoleAssignmentScheduleInstancesByScope.json │ │ │ │ │ ├── GetRoleAssignmentScheduleRequestByName.json │ │ │ │ │ ├── GetRoleAssignmentScheduleRequestByScope.json │ │ │ │ │ ├── GetRoleAssignmentSchedulesByScope.json │ │ │ │ │ ├── GetRoleDefinitionAtScope.json │ │ │ │ │ ├── GetRoleDefinitionByName.json │ │ │ │ │ ├── GetRoleEligibilityScheduleByName.json │ │ │ │ │ ├── GetRoleEligibilityScheduleInstanceByName.json │ │ │ │ │ ├── GetRoleEligibilityScheduleInstancesByScope.json │ │ │ │ │ ├── GetRoleEligibilityScheduleRequestByName.json │ │ │ │ │ ├── GetRoleEligibilityScheduleRequestByScope.json │ │ │ │ │ ├── GetRoleEligibilitySchedulesByScope.json │ │ │ │ │ ├── GetRoleManagementPolicyAssignmentByName.json │ │ │ │ │ ├── GetRoleManagementPolicyAssignmentByScope.json │ │ │ │ │ ├── GetRoleManagementPolicyByName.json │ │ │ │ │ ├── GetRoleManagementPolicyByScope.json │ │ │ │ │ ├── PatchPartialRoleManagementPolicy.json │ │ │ │ │ ├── PatchRoleManagementPolicy.json │ │ │ │ │ ├── PutRoleAssignmentScheduleRequest.json │ │ │ │ │ ├── PutRoleDefinition.json │ │ │ │ │ ├── PutRoleEligibilityScheduleRequest.json │ │ │ │ │ ├── PutRoleManagementPolicyAssignment.json │ │ │ │ │ ├── RoleAssignments_CreateForResource.json │ │ │ │ │ ├── RoleAssignments_CreateForResourceGroup.json │ │ │ │ │ ├── RoleAssignments_CreateForSubscription.json │ │ │ │ │ ├── RoleAssignments_Delete.json │ │ │ │ │ ├── RoleAssignments_Get.json │ │ │ │ │ ├── RoleAssignments_ListForScope.json │ │ │ │ │ ├── ValidateRoleAssignmentScheduleRequestByName.json │ │ │ │ │ └── ValidateRoleEligibilityScheduleRequestByName.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-azureintegrationspaces │ │ │ ├── azureintegrationspaces.md │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── ApplicationResources_CreateOrUpdate.json │ │ │ │ │ ├── ApplicationResources_Delete.json │ │ │ │ │ ├── ApplicationResources_Get.json │ │ │ │ │ ├── ApplicationResources_ListByApplication.json │ │ │ │ │ ├── ApplicationResources_Patch.json │ │ │ │ │ ├── Applications_CreateOrUpdate.json │ │ │ │ │ ├── Applications_Delete.json │ │ │ │ │ ├── Applications_DeleteBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── Applications_Get.json │ │ │ │ │ ├── Applications_GetBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── Applications_ListBusinessProcessDevelopmentArtifacts.json │ │ │ │ │ ├── Applications_ListBySpace.json │ │ │ │ │ ├── Applications_Patch.json │ │ │ │ │ ├── Applications_SaveBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── Applications_ValidateBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── BusinessProcessVersions_Get.json │ │ │ │ │ ├── BusinessProcessVersions_ListByBusinessProcess.json │ │ │ │ │ ├── BusinessProcesses_CreateOrUpdate.json │ │ │ │ │ ├── BusinessProcesses_Delete.json │ │ │ │ │ ├── BusinessProcesses_Get.json │ │ │ │ │ ├── BusinessProcesses_ListByApplication.json │ │ │ │ │ ├── BusinessProcesses_Patch.json │ │ │ │ │ ├── InfrastructureResources_CreateOrUpdate.json │ │ │ │ │ ├── InfrastructureResources_Delete.json │ │ │ │ │ ├── InfrastructureResources_Get.json │ │ │ │ │ ├── InfrastructureResources_ListBySpace.json │ │ │ │ │ ├── InfrastructureResources_Patch.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── Spaces_CreateOrUpdate.json │ │ │ │ │ ├── Spaces_Delete.json │ │ │ │ │ ├── Spaces_Get.json │ │ │ │ │ ├── Spaces_ListByResourceGroup.json │ │ │ │ │ ├── Spaces_ListBySubscription.json │ │ │ │ │ └── Spaces_Patch.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── Application.tsp │ │ │ │ ├── ApplicationResource.tsp │ │ │ │ ├── BusinessProcess.tsp │ │ │ │ ├── BusinessProcessVersion.tsp │ │ │ │ ├── InfrastructureResource.tsp │ │ │ │ ├── Space.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2023-11-14-preview │ │ │ │ │ ├── ApplicationResources_CreateOrUpdate.json │ │ │ │ │ ├── ApplicationResources_Delete.json │ │ │ │ │ ├── ApplicationResources_Get.json │ │ │ │ │ ├── ApplicationResources_ListByApplication.json │ │ │ │ │ ├── ApplicationResources_Patch.json │ │ │ │ │ ├── Applications_CreateOrUpdate.json │ │ │ │ │ ├── Applications_Delete.json │ │ │ │ │ ├── Applications_DeleteBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── Applications_Get.json │ │ │ │ │ ├── Applications_GetBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── Applications_ListBusinessProcessDevelopmentArtifacts.json │ │ │ │ │ ├── Applications_ListBySpace.json │ │ │ │ │ ├── Applications_Patch.json │ │ │ │ │ ├── Applications_SaveBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── Applications_ValidateBusinessProcessDevelopmentArtifact.json │ │ │ │ │ ├── BusinessProcessVersions_Get.json │ │ │ │ │ ├── BusinessProcessVersions_ListByBusinessProcess.json │ │ │ │ │ ├── BusinessProcesses_CreateOrUpdate.json │ │ │ │ │ ├── BusinessProcesses_Delete.json │ │ │ │ │ ├── BusinessProcesses_Get.json │ │ │ │ │ ├── BusinessProcesses_ListByApplication.json │ │ │ │ │ ├── BusinessProcesses_Patch.json │ │ │ │ │ ├── InfrastructureResources_CreateOrUpdate.json │ │ │ │ │ ├── InfrastructureResources_Delete.json │ │ │ │ │ ├── InfrastructureResources_Get.json │ │ │ │ │ ├── InfrastructureResources_ListBySpace.json │ │ │ │ │ ├── InfrastructureResources_Patch.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── Spaces_CreateOrUpdate.json │ │ │ │ │ ├── Spaces_Delete.json │ │ │ │ │ ├── Spaces_Get.json │ │ │ │ │ ├── Spaces_ListByResourceGroup.json │ │ │ │ │ ├── Spaces_ListBySubscription.json │ │ │ │ │ └── Spaces_Patch.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-compute │ │ │ ├── compute.md │ │ │ ├── resources.json │ │ │ └── tsp-output │ │ │ │ ├── AvailabilitySet.tsp │ │ │ │ ├── CapacityReservation.tsp │ │ │ │ ├── CapacityReservationGroup.tsp │ │ │ │ ├── CloudService.tsp │ │ │ │ ├── CloudServiceRole.tsp │ │ │ │ ├── CommunityGallery.tsp │ │ │ │ ├── CommunityGalleryImage.tsp │ │ │ │ ├── CommunityGalleryImageVersion.tsp │ │ │ │ ├── DedicatedHost.tsp │ │ │ │ ├── DedicatedHostGroup.tsp │ │ │ │ ├── Disk.tsp │ │ │ │ ├── DiskAccess.tsp │ │ │ │ ├── DiskEncryptionSet.tsp │ │ │ │ ├── DiskRestorePoint.tsp │ │ │ │ ├── Gallery.tsp │ │ │ │ ├── GalleryApplication.tsp │ │ │ │ ├── GalleryApplicationVersion.tsp │ │ │ │ ├── GalleryImage.tsp │ │ │ │ ├── GalleryImageVersion.tsp │ │ │ │ ├── Image.tsp │ │ │ │ ├── OSFamily.tsp │ │ │ │ ├── OSVersion.tsp │ │ │ │ ├── PrivateEndpointConnection.tsp │ │ │ │ ├── ProximityPlacementGroup.tsp │ │ │ │ ├── RestorePoint.tsp │ │ │ │ ├── RestorePointCollection.tsp │ │ │ │ ├── RoleInstance.tsp │ │ │ │ ├── RollingUpgradeStatusInfo.tsp │ │ │ │ ├── SharedGallery.tsp │ │ │ │ ├── SharedGalleryImage.tsp │ │ │ │ ├── SharedGalleryImageVersion.tsp │ │ │ │ ├── Snapshot.tsp │ │ │ │ ├── SshPublicKeyResource.tsp │ │ │ │ ├── VirtualMachine.tsp │ │ │ │ ├── VirtualMachineExtension.tsp │ │ │ │ ├── VirtualMachineExtensionImage.tsp │ │ │ │ ├── VirtualMachineRunCommand.tsp │ │ │ │ ├── VirtualMachineScaleSet.tsp │ │ │ │ ├── VirtualMachineScaleSetExtension.tsp │ │ │ │ ├── VirtualMachineScaleSetVM.tsp │ │ │ │ ├── VirtualMachineScaleSetVMExtension.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2023-07-01 │ │ │ │ │ ├── CloudServiceOSFamilies_List.json │ │ │ │ │ ├── CloudServiceOSFamily_Get.json │ │ │ │ │ ├── CloudServiceOSVersion_Get.json │ │ │ │ │ ├── CloudServiceOSVersion_List.json │ │ │ │ │ ├── CloudServiceRoleInstance_Delete.json │ │ │ │ │ ├── CloudServiceRoleInstance_Delete_ByCloudService.json │ │ │ │ │ ├── CloudServiceRoleInstance_Get.json │ │ │ │ │ ├── CloudServiceRoleInstance_Get_InstanceView.json │ │ │ │ │ ├── CloudServiceRoleInstance_Get_RemoteDesktopFile.json │ │ │ │ │ ├── CloudServiceRoleInstance_Rebuild.json │ │ │ │ │ ├── CloudServiceRoleInstance_Rebuild_ByCloudService.json │ │ │ │ │ ├── CloudServiceRoleInstance_Reimage.json │ │ │ │ │ ├── CloudServiceRoleInstance_Reimage_ByCloudService.json │ │ │ │ │ ├── CloudServiceRoleInstance_Restart.json │ │ │ │ │ ├── CloudServiceRoleInstance_Restart_ByCloudService.json │ │ │ │ │ ├── CloudServiceRole_Get.json │ │ │ │ │ ├── CloudServiceRole_List.json │ │ │ │ │ ├── CloudServiceRolesInstance_List.json │ │ │ │ │ ├── CloudServiceUpdateDomain_Get.json │ │ │ │ │ ├── CloudServiceUpdateDomain_List.json │ │ │ │ │ ├── CloudServiceUpdateDomain_Update.json │ │ │ │ │ ├── CloudService_Create_WithMultiRole.json │ │ │ │ │ ├── CloudService_Create_WithMultiRole_WithZones.json │ │ │ │ │ ├── CloudService_Create_WithSingleRole.json │ │ │ │ │ ├── CloudService_Create_WithSingleRoleAndCertificate.json │ │ │ │ │ ├── CloudService_Create_WithSingleRoleAndRDP.json │ │ │ │ │ ├── CloudService_Delete.json │ │ │ │ │ ├── CloudService_Get_InstanceViewWithMultiRole.json │ │ │ │ │ ├── CloudService_Get_WithMultiRoleAndRDP.json │ │ │ │ │ ├── CloudService_List_ByResourceGroup.json │ │ │ │ │ ├── CloudService_List_BySubscription.json │ │ │ │ │ ├── CloudService_PowerOff.json │ │ │ │ │ ├── CloudService_Start.json │ │ │ │ │ ├── CloudService_Update_ToIncludeTags.json │ │ │ │ │ ├── availabilitySetExamples │ │ │ │ │ ├── AvailabilitySet_Create.json │ │ │ │ │ ├── AvailabilitySet_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_Get_MaximumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_Get_MinimumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_ListAvailableSizes_MaximumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_ListAvailableSizes_MinimumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_ListBySubscription.json │ │ │ │ │ ├── AvailabilitySet_List_MaximumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_List_MinimumSet_Gen.json │ │ │ │ │ ├── AvailabilitySet_Update_MaximumSet_Gen.json │ │ │ │ │ └── AvailabilitySet_Update_MinimumSet_Gen.json │ │ │ │ │ ├── capacityReservationExamples │ │ │ │ │ ├── CapacityReservationGroup_CreateOrUpdate.json │ │ │ │ │ ├── CapacityReservationGroup_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── CapacityReservationGroup_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── CapacityReservationGroup_Get.json │ │ │ │ │ ├── CapacityReservationGroup_ListByResourceGroup.json │ │ │ │ │ ├── CapacityReservationGroup_ListBySubscription.json │ │ │ │ │ ├── CapacityReservationGroup_Update_MaximumSet_Gen.json │ │ │ │ │ ├── CapacityReservationGroup_Update_MinimumSet_Gen.json │ │ │ │ │ ├── CapacityReservation_CreateOrUpdate.json │ │ │ │ │ ├── CapacityReservation_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── CapacityReservation_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── CapacityReservation_Get.json │ │ │ │ │ ├── CapacityReservation_ListByReservationGroup.json │ │ │ │ │ ├── CapacityReservation_Update_MaximumSet_Gen.json │ │ │ │ │ └── CapacityReservation_Update_MinimumSet_Gen.json │ │ │ │ │ ├── communityGalleryExamples │ │ │ │ │ ├── CommunityGalleryImageVersion_Get.json │ │ │ │ │ ├── CommunityGalleryImageVersion_List.json │ │ │ │ │ ├── CommunityGalleryImage_Get.json │ │ │ │ │ ├── CommunityGalleryImage_List.json │ │ │ │ │ └── CommunityGallery_Get.json │ │ │ │ │ ├── computeRPCommonExamples │ │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ │ ├── Operations_List_MinimumSet_Gen.json │ │ │ │ │ ├── Usage_List_MaximumSet_Gen.json │ │ │ │ │ ├── Usage_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineSizes_List_MaximumSet_Gen.json │ │ │ │ │ └── VirtualMachineSizes_List_MinimumSet_Gen.json │ │ │ │ │ ├── dedicatedHostExamples │ │ │ │ │ ├── DedicatedHostGroup_CreateOrUpdate.json │ │ │ │ │ ├── DedicatedHostGroup_CreateOrUpdate_WithUltraSSD.json │ │ │ │ │ ├── DedicatedHostGroup_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_Get.json │ │ │ │ │ ├── DedicatedHostGroup_Get_UltraSSDEnabledDedicatedHostGroup.json │ │ │ │ │ ├── DedicatedHostGroup_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_ListBySubscription_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_ListBySubscription_MinimumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_Update_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHostGroup_Update_MinimumSet_Gen.json │ │ │ │ │ ├── DedicatedHost_CreateOrUpdate.json │ │ │ │ │ ├── DedicatedHost_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHost_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── DedicatedHost_Get.json │ │ │ │ │ ├── DedicatedHost_ListAvailableSizes.json │ │ │ │ │ ├── DedicatedHost_ListByHostGroup_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHost_ListByHostGroup_MinimumSet_Gen.json │ │ │ │ │ ├── DedicatedHost_Restart.json │ │ │ │ │ ├── DedicatedHost_Update_MaximumSet_Gen.json │ │ │ │ │ ├── DedicatedHost_Update_MinimumSet_Gen.json │ │ │ │ │ └── DedicatedHost_Update_Resize.json │ │ │ │ │ ├── diskAccessExamples │ │ │ │ │ ├── DiskAccessPrivateEndpointConnection_Approve.json │ │ │ │ │ ├── DiskAccessPrivateEndpointConnection_Delete.json │ │ │ │ │ ├── DiskAccessPrivateEndpointConnection_Get.json │ │ │ │ │ ├── DiskAccessPrivateEndpointConnection_ListByDiskAccess.json │ │ │ │ │ ├── DiskAccessPrivateLinkResources_Get.json │ │ │ │ │ ├── DiskAccess_Create.json │ │ │ │ │ ├── DiskAccess_Delete.json │ │ │ │ │ ├── DiskAccess_Get.json │ │ │ │ │ ├── DiskAccess_Get_WithPrivateEndpoints.json │ │ │ │ │ ├── DiskAccess_ListByResourceGroup.json │ │ │ │ │ ├── DiskAccess_ListBySubscription.json │ │ │ │ │ └── DiskAccess_Update.json │ │ │ │ │ ├── diskEncryptionSetExamples │ │ │ │ │ ├── DiskEncryptionSet_Create.json │ │ │ │ │ ├── DiskEncryptionSet_Create_WithKeyVaultFromADifferentSubscription.json │ │ │ │ │ ├── DiskEncryptionSet_Create_WithKeyVaultFromADifferentTenant.json │ │ │ │ │ ├── DiskEncryptionSet_Delete.json │ │ │ │ │ ├── DiskEncryptionSet_Get.json │ │ │ │ │ ├── DiskEncryptionSet_Get_WithAutoKeyRotationError.json │ │ │ │ │ ├── DiskEncryptionSet_ListAssociatedResources.json │ │ │ │ │ ├── DiskEncryptionSet_ListByResourceGroup.json │ │ │ │ │ ├── DiskEncryptionSet_ListBySubscription.json │ │ │ │ │ ├── DiskEncryptionSet_Update.json │ │ │ │ │ ├── DiskEncryptionSet_Update_WithRotationToLatestKeyVersionEnabled.json │ │ │ │ │ └── DiskEncryptionSet_Update_WithRotationToLatestKeyVersionEnabledInProgress.json │ │ │ │ │ ├── diskExamples │ │ │ │ │ ├── Disk_BeginGetAccess.json │ │ │ │ │ ├── Disk_BeginGetAccess_WithVMGuestState.json │ │ │ │ │ ├── Disk_CreateOrUpdate_BurstingEnabled.json │ │ │ │ │ ├── Disk_Create_ByCopyingASnapshot.json │ │ │ │ │ ├── Disk_Create_ByImportingBlobFromADifferentSubscription.json │ │ │ │ │ ├── Disk_Create_ByImportingBlobFromTheSameSubscription.json │ │ │ │ │ ├── Disk_Create_ConfidentialVMSupportedDiskEncryptedWithCMK.json │ │ │ │ │ ├── Disk_Create_Empty.json │ │ │ │ │ ├── Disk_Create_FromAPlatformImage.json │ │ │ │ │ ├── Disk_Create_FromAnAzureComputeGalleryCommunityImage.json │ │ │ │ │ ├── Disk_Create_FromAnAzureComputeGalleryDirectSharedImage.json │ │ │ │ │ ├── Disk_Create_FromAnAzureComputeGalleryImage.json │ │ │ │ │ ├── Disk_Create_FromAnElasticSanVolumeSnapshot.json │ │ │ │ │ ├── Disk_Create_FromAnExistingManagedDisk.json │ │ │ │ │ ├── Disk_Create_FromImportSecure.json │ │ │ │ │ ├── Disk_Create_FromUploadPreparedSecure.json │ │ │ │ │ ├── Disk_Create_InExtendedLocation.json │ │ │ │ │ ├── Disk_Create_PerformancePlus.json │ │ │ │ │ ├── Disk_Create_UploadDisk.json │ │ │ │ │ ├── Disk_Create_WithDataAccessAuthMode.json │ │ │ │ │ ├── Disk_Create_WithDiskAccess.json │ │ │ │ │ ├── Disk_Create_WithDiskEncryptionSet.json │ │ │ │ │ ├── Disk_Create_WithLogicalSectorSize.json │ │ │ │ │ ├── Disk_Create_WithOptimizedForFrequentAttach.json │ │ │ │ │ ├── Disk_Create_WithPremiumV2_LRSAccountType.json │ │ │ │ │ ├── Disk_Create_WithSSDZRSAccountType.json │ │ │ │ │ ├── Disk_Create_WithSecurityProfile.json │ │ │ │ │ ├── Disk_Create_WithUltraSSD_ReadOnly.json │ │ │ │ │ ├── Disk_Delete.json │ │ │ │ │ ├── Disk_EndGetAccess.json │ │ │ │ │ ├── Disk_Get.json │ │ │ │ │ ├── Disk_ListByResourceGroup.json │ │ │ │ │ ├── Disk_ListBySubscription.json │ │ │ │ │ ├── Disk_Update_AddAcceleratedNetworking.json │ │ │ │ │ ├── Disk_Update_AddDiskControllerTypes.json │ │ │ │ │ ├── Disk_Update_AddPurchasePlan.json │ │ │ │ │ ├── Disk_Update_AddSupportsHibernation.json │ │ │ │ │ ├── Disk_Update_ChangeTier.json │ │ │ │ │ ├── Disk_Update_DisableBursting.json │ │ │ │ │ ├── Disk_Update_DisableOptimizedForFrequentAttach.json │ │ │ │ │ ├── Disk_Update_RemoveDiskAccess.json │ │ │ │ │ └── Disk_Update_ToAddArchitecture.json │ │ │ │ │ ├── diskRestorePointExamples │ │ │ │ │ ├── DiskRestorePoint_BeginGetAccess.json │ │ │ │ │ ├── DiskRestorePoint_EndGetAccess.json │ │ │ │ │ ├── DiskRestorePoint_Get.json │ │ │ │ │ ├── DiskRestorePoint_Get_WhenSourceResourceIsFromDifferentRegion.json │ │ │ │ │ └── DiskRestorePoint_ListByVmRestorePoint.json │ │ │ │ │ ├── galleryExamples │ │ │ │ │ ├── CommunityGallery_Create.json │ │ │ │ │ ├── CommunityGallery_Get.json │ │ │ │ │ ├── GalleryApplicationVersion_Create.json │ │ │ │ │ ├── GalleryApplicationVersion_Delete.json │ │ │ │ │ ├── GalleryApplicationVersion_Get.json │ │ │ │ │ ├── GalleryApplicationVersion_Get_WithReplicationStatus.json │ │ │ │ │ ├── GalleryApplicationVersion_ListByGalleryApplication.json │ │ │ │ │ ├── GalleryApplicationVersion_Update.json │ │ │ │ │ ├── GalleryApplication_Create.json │ │ │ │ │ ├── GalleryApplication_Delete.json │ │ │ │ │ ├── GalleryApplication_Get.json │ │ │ │ │ ├── GalleryApplication_ListByGallery.json │ │ │ │ │ ├── GalleryApplication_Update.json │ │ │ │ │ ├── GalleryImageVersion_Create.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithCommunityImageVersionAsSource.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithImageVersionAsSource.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithShallowReplicationMode.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithSnapshotsAsSource.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithTargetExtendedLocations.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithVHD.json │ │ │ │ │ ├── GalleryImageVersion_Create_WithVmAsSource.json │ │ │ │ │ ├── GalleryImageVersion_Delete.json │ │ │ │ │ ├── GalleryImageVersion_Get.json │ │ │ │ │ ├── GalleryImageVersion_Get_WithReplicationStatus.json │ │ │ │ │ ├── GalleryImageVersion_Get_WithSnapshotsAsSource.json │ │ │ │ │ ├── GalleryImageVersion_Get_WithVhdAsSource.json │ │ │ │ │ ├── GalleryImageVersion_ListByGalleryImage.json │ │ │ │ │ ├── GalleryImageVersion_Update.json │ │ │ │ │ ├── GalleryImageVersion_Update_WithoutSourceId.json │ │ │ │ │ ├── GalleryImage_Create.json │ │ │ │ │ ├── GalleryImage_Delete.json │ │ │ │ │ ├── GalleryImage_Get.json │ │ │ │ │ ├── GalleryImage_ListByGallery.json │ │ │ │ │ ├── GalleryImage_Update.json │ │ │ │ │ ├── Gallery_AddToSharingProfile.json │ │ │ │ │ ├── Gallery_Create.json │ │ │ │ │ ├── Gallery_Create_SoftDeletionEnabled.json │ │ │ │ │ ├── Gallery_Create_WithSharingProfile.json │ │ │ │ │ ├── Gallery_Delete.json │ │ │ │ │ ├── Gallery_EnableCommunityGallery.json │ │ │ │ │ ├── Gallery_Get.json │ │ │ │ │ ├── Gallery_Get_WithExpandSharingProfileGroups.json │ │ │ │ │ ├── Gallery_Get_WithSelectPermissions.json │ │ │ │ │ ├── Gallery_ListByResourceGroup.json │ │ │ │ │ ├── Gallery_ListBySubscription.json │ │ │ │ │ ├── Gallery_ResetSharingProfile.json │ │ │ │ │ └── Gallery_Update.json │ │ │ │ │ ├── imageExamples │ │ │ │ │ ├── Image_CreateFromABlob.json │ │ │ │ │ ├── Image_CreateFromABlobWithDiskEncryptionSet.json │ │ │ │ │ ├── Image_CreateFromAManagedDisk.json │ │ │ │ │ ├── Image_CreateFromAManagedDiskWithDiskEncryptionSet.json │ │ │ │ │ ├── Image_CreateFromASnapshot.json │ │ │ │ │ ├── Image_CreateFromASnapshotWithDiskEncryptionSet.json │ │ │ │ │ ├── Image_CreateFromAVM.json │ │ │ │ │ ├── Image_Create_DataDiskFromABlobIncluded.json │ │ │ │ │ ├── Image_Create_DataDiskFromAManagedDiskIncluded.json │ │ │ │ │ ├── Image_Create_DataDiskFromASnapshotIncluded.json │ │ │ │ │ ├── Image_Get.json │ │ │ │ │ ├── Image_ListByResourceGroup.json │ │ │ │ │ ├── Image_ListBySubscription.json │ │ │ │ │ ├── Image_Update.json │ │ │ │ │ ├── Images_Delete_MaximumSet_Gen.json │ │ │ │ │ └── Images_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── logAnalyticExamples │ │ │ │ │ ├── LogAnalytics_RequestRateByInterval.json │ │ │ │ │ └── LogAnalytics_ThrottledRequests.json │ │ │ │ │ ├── proximityPlacementGroupExamples │ │ │ │ │ ├── ProximityPlacementGroup_CreateOrUpdate.json │ │ │ │ │ ├── ProximityPlacementGroup_Delete.json │ │ │ │ │ ├── ProximityPlacementGroup_Get.json │ │ │ │ │ ├── ProximityPlacementGroup_ListByResourceGroup.json │ │ │ │ │ ├── ProximityPlacementGroup_ListBySubscription.json │ │ │ │ │ └── ProximityPlacementGroup_Patch.json │ │ │ │ │ ├── restorePointExamples │ │ │ │ │ ├── RestorePointCollection_CreateOrUpdate.json │ │ │ │ │ ├── RestorePointCollection_CreateOrUpdate_ForCrossRegionCopy.json │ │ │ │ │ ├── RestorePointCollection_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── RestorePointCollection_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── RestorePointCollection_Get.json │ │ │ │ │ ├── RestorePointCollection_Get_WithContainedRestorePoints.json │ │ │ │ │ ├── RestorePointCollection_ListByResourceGroup.json │ │ │ │ │ ├── RestorePointCollection_ListBySubscription.json │ │ │ │ │ ├── RestorePointCollection_Update_MaximumSet_Gen.json │ │ │ │ │ ├── RestorePointCollection_Update_MinimumSet_Gen.json │ │ │ │ │ ├── RestorePoint_Copy_BetweenRegions.json │ │ │ │ │ ├── RestorePoint_Create.json │ │ │ │ │ ├── RestorePoint_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── RestorePoint_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── RestorePoint_Get.json │ │ │ │ │ └── RestorePoint_Get_WithInstanceView.json │ │ │ │ │ ├── runCommandExamples │ │ │ │ │ ├── RunCommand_Get.json │ │ │ │ │ ├── RunCommand_List.json │ │ │ │ │ ├── VirtualMachineRunCommand.json │ │ │ │ │ ├── VirtualMachineRunCommand_CreateOrUpdate.json │ │ │ │ │ ├── VirtualMachineRunCommand_Delete.json │ │ │ │ │ ├── VirtualMachineRunCommand_Get.json │ │ │ │ │ ├── VirtualMachineRunCommand_List.json │ │ │ │ │ ├── VirtualMachineRunCommand_Update.json │ │ │ │ │ ├── VirtualMachineScaleSetVMRunCommand.json │ │ │ │ │ ├── VirtualMachineScaleSetVMRunCommand_CreateOrUpdate.json │ │ │ │ │ ├── VirtualMachineScaleSetVMRunCommand_Delete.json │ │ │ │ │ ├── VirtualMachineScaleSetVMRunCommand_Get.json │ │ │ │ │ ├── VirtualMachineScaleSetVMRunCommand_List.json │ │ │ │ │ └── VirtualMachineScaleSetVMRunCommand_Update.json │ │ │ │ │ ├── sharedGalleryExamples │ │ │ │ │ ├── SharedGalleryImageVersion_Get.json │ │ │ │ │ ├── SharedGalleryImageVersions_List.json │ │ │ │ │ ├── SharedGalleryImage_Get.json │ │ │ │ │ ├── SharedGalleryImages_List.json │ │ │ │ │ ├── SharedGallery_Get.json │ │ │ │ │ └── SharedGallery_List.json │ │ │ │ │ ├── skus │ │ │ │ │ ├── ListAvailableResourceSkus.json │ │ │ │ │ ├── ListAvailableResourceSkusForARegion.json │ │ │ │ │ └── ListAvailableResourceSkusWithExtendedLocations.json │ │ │ │ │ ├── snapshotExamples │ │ │ │ │ ├── Snapshot_BeginGetAccess.json │ │ │ │ │ ├── Snapshot_Create_ByImportingAnUnmanagedBlobFromADifferentSubscription.json │ │ │ │ │ ├── Snapshot_Create_ByImportingAnUnmanagedBlobFromTheSameSubscription.json │ │ │ │ │ ├── Snapshot_Create_FromAnElasticSanVolumeSnapshot.json │ │ │ │ │ ├── Snapshot_Create_FromAnExistingSnapshot.json │ │ │ │ │ ├── Snapshot_Create_FromAnExistingSnapshotInDifferentRegion.json │ │ │ │ │ ├── Snapshot_Delete.json │ │ │ │ │ ├── Snapshot_EndGetAccess.json │ │ │ │ │ ├── Snapshot_Get.json │ │ │ │ │ ├── Snapshot_GetIncrementalSnapshot.json │ │ │ │ │ ├── Snapshot_ListByResourceGroup.json │ │ │ │ │ ├── Snapshot_ListBySubscription.json │ │ │ │ │ ├── Snapshot_Update.json │ │ │ │ │ └── Snapshot_Update_WithAcceleratedNetwork.json │ │ │ │ │ ├── sshPublicKeyExamples │ │ │ │ │ ├── SshPublicKey_Create.json │ │ │ │ │ ├── SshPublicKey_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── SshPublicKey_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── SshPublicKey_GenerateKeyPair.json │ │ │ │ │ ├── SshPublicKey_Get.json │ │ │ │ │ ├── SshPublicKey_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ │ ├── SshPublicKey_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ │ ├── SshPublicKey_ListBySubscription_MaximumSet_Gen.json │ │ │ │ │ ├── SshPublicKey_ListBySubscription_MinimumSet_Gen.json │ │ │ │ │ ├── SshPublicKey_Update_MaximumSet_Gen.json │ │ │ │ │ └── SshPublicKey_Update_MinimumSet_Gen.json │ │ │ │ │ ├── virtualMachineExamples │ │ │ │ │ ├── VirtualMachineExtension_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_Get_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_Get_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_List_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtension_Update.json │ │ │ │ │ ├── VirtualMachine_AssessPatches.json │ │ │ │ │ ├── VirtualMachine_Capture_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Capture_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_ConvertToManagedDisks_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_ConvertToManagedDisks_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Create_CustomImageVmFromAnUnmanagedGeneralizedOsImage.json │ │ │ │ │ ├── VirtualMachine_Create_FromACommunityGalleryImage.json │ │ │ │ │ ├── VirtualMachine_Create_FromACustomImage.json │ │ │ │ │ ├── VirtualMachine_Create_FromAGeneralizedSharedImage.json │ │ │ │ │ ├── VirtualMachine_Create_FromASharedGalleryImage.json │ │ │ │ │ ├── VirtualMachine_Create_FromASpecializedSharedImage.json │ │ │ │ │ ├── VirtualMachine_Create_InAVmssWithCustomerAssignedPlatformFaultDomain.json │ │ │ │ │ ├── VirtualMachine_Create_InAnAvailabilitySet.json │ │ │ │ │ ├── VirtualMachine_Create_LinuxVmWithAutomaticByPlatformSettings.json │ │ │ │ │ ├── VirtualMachine_Create_LinuxVmWithPatchSettingAssessmentModeOfImageDefault.json │ │ │ │ │ ├── VirtualMachine_Create_LinuxVmWithPatchSettingModeOfImageDefault.json │ │ │ │ │ ├── VirtualMachine_Create_LinuxVmWithPatchSettingModesOfAutomaticByPlatform.json │ │ │ │ │ ├── VirtualMachine_Create_PlatformImageVmWithUnmanagedOsAndDataDisks.json │ │ │ │ │ ├── VirtualMachine_Create_WindowsVmWithAutomaticByPlatformSettings.json │ │ │ │ │ ├── VirtualMachine_Create_WindowsVmWithPatchSettingAssessmentModeOfImageDefault.json │ │ │ │ │ ├── VirtualMachine_Create_WindowsVmWithPatchSettingModeOfAutomaticByOS.json │ │ │ │ │ ├── VirtualMachine_Create_WindowsVmWithPatchSettingModeOfAutomaticByPlatformAndEnableHotPatchingTrue.json │ │ │ │ │ ├── VirtualMachine_Create_WindowsVmWithPatchSettingModeOfManual.json │ │ │ │ │ ├── VirtualMachine_Create_WindowsVmWithPatchSettingModesOfAutomaticByPlatform.json │ │ │ │ │ ├── VirtualMachine_Create_WithADiffOsDisk.json │ │ │ │ │ ├── VirtualMachine_Create_WithADiffOsDiskUsingDiffDiskPlacementAsCacheDisk.json │ │ │ │ │ ├── VirtualMachine_Create_WithADiffOsDiskUsingDiffDiskPlacementAsResourceDisk.json │ │ │ │ │ ├── VirtualMachine_Create_WithAMarketplaceImagePlan.json │ │ │ │ │ ├── VirtualMachine_Create_WithApplicationProfile.json │ │ │ │ │ ├── VirtualMachine_Create_WithBootDiagnostics.json │ │ │ │ │ ├── VirtualMachine_Create_WithCapacityReservation.json │ │ │ │ │ ├── VirtualMachine_Create_WithDiskControllerType.json │ │ │ │ │ ├── VirtualMachine_Create_WithDiskEncryptionSetResource.json │ │ │ │ │ ├── VirtualMachine_Create_WithEmptyDataDisks.json │ │ │ │ │ ├── VirtualMachine_Create_WithEncryptionAtHost.json │ │ │ │ │ ├── VirtualMachine_Create_WithExtensionsTimeBudget.json │ │ │ │ │ ├── VirtualMachine_Create_WithHibernationEnabled.json │ │ │ │ │ ├── VirtualMachine_Create_WithManagedBootDiagnostics.json │ │ │ │ │ ├── VirtualMachine_Create_WithNetworkInterfaceConfiguration.json │ │ │ │ │ ├── VirtualMachine_Create_WithNetworkInterfaceConfigurationDnsSettings.json │ │ │ │ │ ├── VirtualMachine_Create_WithPasswordAuthentication.json │ │ │ │ │ ├── VirtualMachine_Create_WithPremiumStorage.json │ │ │ │ │ ├── VirtualMachine_Create_WithScheduledEventsProfile.json │ │ │ │ │ ├── VirtualMachine_Create_WithSecurityTypeConfidentialVM.json │ │ │ │ │ ├── VirtualMachine_Create_WithSecurityTypeConfidentialVMWithCustomerManagedKeys.json │ │ │ │ │ ├── VirtualMachine_Create_WithSshAuthentication.json │ │ │ │ │ ├── VirtualMachine_Create_WithUefiSettings.json │ │ │ │ │ ├── VirtualMachine_Create_WithUserData.json │ │ │ │ │ ├── VirtualMachine_Create_WithVMSizeProperties.json │ │ │ │ │ ├── VirtualMachine_Deallocate_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Deallocate_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Delete_Force.json │ │ │ │ │ ├── VirtualMachine_Generalize.json │ │ │ │ │ ├── VirtualMachine_Get.json │ │ │ │ │ ├── VirtualMachine_Get_AutoPlacedOnDedicatedHostGroup.json │ │ │ │ │ ├── VirtualMachine_Get_InstanceView.json │ │ │ │ │ ├── VirtualMachine_Get_InstanceViewAutoPlacedOnDedicatedHostGroup.json │ │ │ │ │ ├── VirtualMachine_Get_WithDiskControllerType.json │ │ │ │ │ ├── VirtualMachine_Get_WithVMSizeProperties.json │ │ │ │ │ ├── VirtualMachine_InstallPatches.json │ │ │ │ │ ├── VirtualMachine_ListAll_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_ListAll_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_ListAvailableVmSizes.json │ │ │ │ │ ├── VirtualMachine_ListBySubscription_ByLocation.json │ │ │ │ │ ├── VirtualMachine_List_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_PerformMaintenance_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_PerformMaintenance_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_PowerOff_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_PowerOff_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Reapply.json │ │ │ │ │ ├── VirtualMachine_Redeploy_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Redeploy_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Reimage.json │ │ │ │ │ ├── VirtualMachine_Reimage_NonEphemeralVMs.json │ │ │ │ │ ├── VirtualMachine_Restart_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Restart_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_RetrieveBootDiagnosticsData.json │ │ │ │ │ ├── VirtualMachine_SimulateEviction.json │ │ │ │ │ ├── VirtualMachine_Start_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Start_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachine_Update_DetachDataDiskUsingToBeDetachedProperty.json │ │ │ │ │ └── VirtualMachine_Update_ForceDetachDataDisk.json │ │ │ │ │ ├── virtualMachineExtensionImageExamples │ │ │ │ │ ├── VirtualMachineExtensionImage_Get_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtensionImage_Get_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineExtensionImage_ListTypes_MaximumSet_Gen.json │ │ │ │ │ └── VirtualMachineExtensionImage_ListTypes_MinimumSet_Gen.json │ │ │ │ │ ├── virtualMachineImageExamples │ │ │ │ │ ├── VirtualMachineImage_Get_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_Get_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_ListOffers_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_ListOffers_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_ListPublishers_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_ListPublishers_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_ListSkus_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_ListSkus_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_List_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImage_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_Get_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_Get_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListByEdgeZone_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListByEdgeZone_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListOffers_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListOffers_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListPublishers_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListPublishers_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListSkus_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_ListSkus_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineImagesEdgeZone_List_MaximumSet_Gen.json │ │ │ │ │ └── VirtualMachineImagesEdgeZone_List_MinimumSet_Gen.json │ │ │ │ │ └── virtualMachineScaleSetExamples │ │ │ │ │ ├── VirtualMachineScaleSetExtension_CreateOrUpdate_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_CreateOrUpdate_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_Get_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_Get_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_List_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_RollingUpgrade.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_Update_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetExtension_Update_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetRollingUpgrade_Cancel_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetRollingUpgrade_Cancel_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetRollingUpgrade_GetLatest_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetRollingUpgrade_GetLatest_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetRollingUpgrade_StartOSUpgrade_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetRollingUpgrade_StartOSUpgrade_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVMExtension_Create.json │ │ │ │ │ ├── VirtualMachineScaleSetVMExtension_Delete.json │ │ │ │ │ ├── VirtualMachineScaleSetVMExtension_Get.json │ │ │ │ │ ├── VirtualMachineScaleSetVMExtension_List.json │ │ │ │ │ ├── VirtualMachineScaleSetVMExtension_Update.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Deallocate_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Deallocate_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Delete_Force.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Get_InstanceViewAutoPlacedOnDedicatedHostGroup.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Get_WithUserData.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Get_WithVMSizeProperties.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_List_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_PerformMaintenance_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_PerformMaintenance_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_PowerOff_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_PowerOff_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Redeploy_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Redeploy_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_ReimageAll_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_ReimageAll_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Reimage_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Reimage_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Restart_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Restart_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_RetrieveBootDiagnosticsData.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_SimulateEviction.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Start_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Start_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Update_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSetVM_Update_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ConvertToSinglePlacementGroup_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ConvertToSinglePlacementGroup_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_CreateA_WithDiffOsDiskUsingDiffDiskPlacement.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_CustomImageFromAnUnmanagedGeneralizedOsImage.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_FromACustomImage.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_FromAGeneralizedSharedImage.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_FromASpecializedSharedImage.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_FromWithDisableTcpStateTrackingNetworkInterface.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_FromWithFpgaNetworkInterface.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_FromWithNetworkInterfaceWithDnsSettings.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_PlatformImageWithUnmanagedOsDisks.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithAMarketplaceImagePlan.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithApplicationProfile.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithAutomaticRepairs.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithAzureApplicationGateway.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithAzureLoadBalancer.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithBootDiagnostics.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithCapacityReservation.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithDiffOsDisk.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithDiskControllerType.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithDiskEncryptionSetResource.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithEmptyDataDisksOnEachVm.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithEncryptionAtHost.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithExtensionsSuppressFailuresEnabled.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithExtensionsTimeBudget.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithManagedBootDiagnostics.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithOSImageScheduledEventEnabled.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithPasswordAuthentication.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithPremiumStorage.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithPriorityMixPolicy.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithProtectedSettingsFromKeyVault.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithScaleInPolicy.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithSecurityPostureReference.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithSecurityTypeConfidentialVM.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithServiceArtifactReference.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithSpotRestorePolicy.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithSshAuthentication.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithTerminateScheduledEventEnabled.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithUefiSettings.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithUserData.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithVMSizeProperties.json │ │ │ │ │ ├── VirtualMachineScaleSet_Create_WithVMsInDifferentZones.json │ │ │ │ │ ├── VirtualMachineScaleSet_Deallocate_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Deallocate_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_DeleteInstances_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_DeleteInstances_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Delete_Force.json │ │ │ │ │ ├── VirtualMachineScaleSet_ForceRecoveryServiceFabricPlatformUpdateDomainWalk_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ForceRecoveryServiceFabricPlatformUpdateDomainWalk_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Get.json │ │ │ │ │ ├── VirtualMachineScaleSet_GetInstanceView_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_GetInstanceView_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_GetOSUpgradeHistory_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_GetOSUpgradeHistory_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Get_AutoPlacedOnDedicatedHostGroup.json │ │ │ │ │ ├── VirtualMachineScaleSet_Get_WithDiskControllerType.json │ │ │ │ │ ├── VirtualMachineScaleSet_Get_WithUserData.json │ │ │ │ │ ├── VirtualMachineScaleSet_ListAll_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ListAll_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ListBySubscription_ByLocation.json │ │ │ │ │ ├── VirtualMachineScaleSet_ListSkus_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ListSkus_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_List_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_List_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_PerformMaintenance_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_PerformMaintenance_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_PowerOff_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_PowerOff_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Reapply_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Reapply_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Redeploy_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Redeploy_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ReimageAll_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_ReimageAll_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Reimage_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Reimage_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Restart_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Restart_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_SetOrchestrationServiceState_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_SetOrchestrationServiceState_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Start_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Start_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_UpdateInstances_MaximumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_UpdateInstances_MinimumSet_Gen.json │ │ │ │ │ ├── VirtualMachineScaleSet_Update_MaximumSet_Gen.json │ │ │ │ │ └── VirtualMachineScaleSet_Update_MinimumSet_Gen.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-dns │ │ │ ├── dns.md │ │ │ ├── resources.json │ │ │ └── tsp-output │ │ │ │ ├── DnsRecord.tsp │ │ │ │ ├── DnsZone.tsp │ │ │ │ ├── client.tsp │ │ │ │ ├── examples │ │ │ │ └── 2018-05-01 │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_A_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_A_Recordset_With_Alias_Target_Resource.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Aaaa_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Caa_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Cname_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Mx_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Ns_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Ptr_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Soa_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Srv_Recordset.json │ │ │ │ │ ├── RecordSets_CreateOrUpdate_Create_Txt_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_A_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Aaaa_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Caa_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Cname_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Mx_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Ns_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Ptr_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Srv_Recordset.json │ │ │ │ │ ├── RecordSets_Delete_Delete_Txt_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_A_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Aaaa_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Caa_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Cname_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Mx_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Ns_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Ptr_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Soa_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Srv_Recordset.json │ │ │ │ │ ├── RecordSets_Get_Get_Txt_Recordset.json │ │ │ │ │ ├── RecordSets_ListByDnsZone.json │ │ │ │ │ ├── RecordSets_ListByType_List_A_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Aaaa_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Caa_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Cname_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Mx_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Ns_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Ptr_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Soa_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Srv_Recordsets.json │ │ │ │ │ ├── RecordSets_ListByType_List_Txt_Recordsets.json │ │ │ │ │ ├── RecordSets_Update_Patch_A_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Aaaa_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Caa_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Cname_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Mx_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Ns_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Ptr_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Soa_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Srv_Recordset.json │ │ │ │ │ ├── RecordSets_Update_Patch_Txt_Recordset.json │ │ │ │ │ ├── Zones_CreateOrUpdate.json │ │ │ │ │ ├── Zones_Delete.json │ │ │ │ │ ├── Zones_Get.json │ │ │ │ │ ├── Zones_List.json │ │ │ │ │ ├── Zones_ListByResourceGroup.json │ │ │ │ │ └── Zones_Update.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-machinelearningservices │ │ │ ├── machinelearningservices.md │ │ │ ├── resources.json │ │ │ └── tsp-output │ │ │ │ ├── BatchDeploymentTrackedResource.tsp │ │ │ │ ├── BatchEndpointTrackedResource.tsp │ │ │ │ ├── CodeContainerResource.tsp │ │ │ │ ├── CodeVersionResource.tsp │ │ │ │ ├── ComponentContainerResource.tsp │ │ │ │ ├── ComponentVersionResource.tsp │ │ │ │ ├── ComputeResource.tsp │ │ │ │ ├── DataContainerResource.tsp │ │ │ │ ├── DataVersionBaseResource.tsp │ │ │ │ ├── DatastoreResource.tsp │ │ │ │ ├── EnvironmentContainerResource.tsp │ │ │ │ ├── EnvironmentVersionResource.tsp │ │ │ │ ├── Feature.tsp │ │ │ │ ├── FeaturesetContainer.tsp │ │ │ │ ├── FeaturesetVersion.tsp │ │ │ │ ├── FeaturestoreEntityContainer.tsp │ │ │ │ ├── FeaturestoreEntityVersion.tsp │ │ │ │ ├── JobBaseResource.tsp │ │ │ │ ├── LabelingJob.tsp │ │ │ │ ├── ModelContainerResource.tsp │ │ │ │ ├── ModelVersionResource.tsp │ │ │ │ ├── OnlineDeploymentTrackedResource.tsp │ │ │ │ ├── OnlineEndpointTrackedResource.tsp │ │ │ │ ├── OutboundRuleBasicResource.tsp │ │ │ │ ├── PrivateEndpointConnection.tsp │ │ │ │ ├── Registry.tsp │ │ │ │ ├── Schedule.tsp │ │ │ │ ├── Workspace.tsp │ │ │ │ ├── WorkspaceConnectionPropertiesV2BasicResource.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2023-06-01-preview │ │ │ │ │ ├── Compute │ │ │ │ │ ├── createOrUpdate │ │ │ │ │ │ ├── AKSCompute.json │ │ │ │ │ │ ├── AmlCompute.json │ │ │ │ │ │ ├── BasicAKSCompute.json │ │ │ │ │ │ ├── BasicAmlCompute.json │ │ │ │ │ │ ├── BasicDataFactoryCompute.json │ │ │ │ │ │ ├── ComputeInstance.json │ │ │ │ │ │ ├── ComputeInstanceMinimal.json │ │ │ │ │ │ ├── ComputeInstanceWithSchedules.json │ │ │ │ │ │ └── KubernetesCompute.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get │ │ │ │ │ │ ├── AKSCompute.json │ │ │ │ │ │ ├── AmlCompute.json │ │ │ │ │ │ ├── ComputeInstance.json │ │ │ │ │ │ └── KubernetesCompute.json │ │ │ │ │ ├── list.json │ │ │ │ │ ├── listKeys.json │ │ │ │ │ ├── listNodes.json │ │ │ │ │ ├── patch.json │ │ │ │ │ ├── restart.json │ │ │ │ │ ├── start.json │ │ │ │ │ ├── stop.json │ │ │ │ │ ├── updateCustomServices.json │ │ │ │ │ └── updateIdleShutdownSetting.json │ │ │ │ │ ├── Datastore │ │ │ │ │ ├── AzureBlobWAccountKey │ │ │ │ │ │ └── createOrUpdate.json │ │ │ │ │ ├── AzureDataLakeGen1WServicePrincipal │ │ │ │ │ │ └── createOrUpdate.json │ │ │ │ │ ├── AzureDataLakeGen2WServicePrincipal │ │ │ │ │ │ └── createOrUpdate.json │ │ │ │ │ ├── AzureFileWAccountKey │ │ │ │ │ │ └── createOrUpdate.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get.json │ │ │ │ │ ├── list.json │ │ │ │ │ └── listSecrets.json │ │ │ │ │ ├── ExternalFQDN │ │ │ │ │ └── get.json │ │ │ │ │ ├── Feature │ │ │ │ │ ├── get.json │ │ │ │ │ └── list.json │ │ │ │ │ ├── Job │ │ │ │ │ ├── AutoMLJob │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── CommandJob │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── PipelineJob │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── SweepJob │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── cancel.json │ │ │ │ │ ├── delete.json │ │ │ │ │ └── update.json │ │ │ │ │ ├── LabelingJob │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── exportLabels.json │ │ │ │ │ ├── get.json │ │ │ │ │ ├── list.json │ │ │ │ │ ├── pause.json │ │ │ │ │ └── resume.json │ │ │ │ │ ├── ManagedNetwork │ │ │ │ │ ├── createOrUpdateRule.json │ │ │ │ │ ├── deleteRule.json │ │ │ │ │ ├── getRule.json │ │ │ │ │ ├── listRule.json │ │ │ │ │ └── provision.json │ │ │ │ │ ├── Notebook │ │ │ │ │ ├── listKeys.json │ │ │ │ │ └── prepare.json │ │ │ │ │ ├── OnlineDeployment │ │ │ │ │ ├── KubernetesOnlineDeployment │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── listSkus.json │ │ │ │ │ │ └── update.json │ │ │ │ │ ├── ManagedOnlineDeployment │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── listSkus.json │ │ │ │ │ │ └── update.json │ │ │ │ │ ├── getLogs.json │ │ │ │ │ └── list.json │ │ │ │ │ ├── PrivateEndpointConnection │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get.json │ │ │ │ │ └── list.json │ │ │ │ │ ├── PrivateLinkResource │ │ │ │ │ └── list.json │ │ │ │ │ ├── Quota │ │ │ │ │ ├── list.json │ │ │ │ │ └── update.json │ │ │ │ │ ├── Registries │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get.json │ │ │ │ │ ├── list.json │ │ │ │ │ ├── listBySubscription.json │ │ │ │ │ ├── removeRegions.json │ │ │ │ │ └── update.json │ │ │ │ │ ├── Registry │ │ │ │ │ ├── CodeContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── CodeVersion │ │ │ │ │ │ ├── createOrGetStartPendingUpload.json │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ComponentContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ComponentVersion │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── DataContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── registryList.json │ │ │ │ │ ├── DataVersionBase │ │ │ │ │ │ ├── createOrGetStartPendingUpload.json │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── registryList.json │ │ │ │ │ ├── EnvironmentContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── EnvironmentVersion │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ModelContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ └── ModelVersion │ │ │ │ │ │ ├── createOrGetStartPendingUpload.json │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── Schedule │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get.json │ │ │ │ │ └── list.json │ │ │ │ │ ├── Usage │ │ │ │ │ └── list.json │ │ │ │ │ ├── VirtualMachineSize │ │ │ │ │ └── list.json │ │ │ │ │ ├── Workspace │ │ │ │ │ ├── BatchDeployment │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ └── update.json │ │ │ │ │ ├── BatchEndpoint │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ ├── listKeys.json │ │ │ │ │ │ └── update.json │ │ │ │ │ ├── CodeContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── CodeVersion │ │ │ │ │ │ ├── createOrGetStartPendingUpload.json │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ComponentContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ComponentVersion │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── DataContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── DataVersionBase │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── EnvironmentContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── EnvironmentVersion │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── FeaturesetContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── getEntity.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── FeaturesetVersion │ │ │ │ │ │ ├── backfill.json │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ └── listMaterializationJobs.json │ │ │ │ │ ├── FeaturestoreEntityContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── getEntity.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── FeaturestoreEntityVersion │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ModelContainer │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ └── list.json │ │ │ │ │ ├── ModelVersion │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── OnlineDeployment │ │ │ │ │ │ └── delete.json │ │ │ │ │ ├── OnlineEndpoint │ │ │ │ │ │ ├── createOrUpdate.json │ │ │ │ │ │ ├── delete.json │ │ │ │ │ │ ├── get.json │ │ │ │ │ │ ├── getToken.json │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ ├── listKeys.json │ │ │ │ │ │ ├── regenerateKeys.json │ │ │ │ │ │ └── update.json │ │ │ │ │ ├── create.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── diagnose.json │ │ │ │ │ ├── get.json │ │ │ │ │ ├── listByResourceGroup.json │ │ │ │ │ ├── listBySubscription.json │ │ │ │ │ ├── listKeys.json │ │ │ │ │ ├── listNotebookAccessToken.json │ │ │ │ │ ├── listStorageAccountKeys.json │ │ │ │ │ ├── operationsList.json │ │ │ │ │ ├── resyncKeys.json │ │ │ │ │ └── update.json │ │ │ │ │ ├── WorkspaceConnection │ │ │ │ │ ├── create.json │ │ │ │ │ ├── delete.json │ │ │ │ │ ├── get.json │ │ │ │ │ ├── list.json │ │ │ │ │ ├── listSecrets.json │ │ │ │ │ └── update.json │ │ │ │ │ └── WorkspaceFeature │ │ │ │ │ └── list.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-networkanalytics │ │ │ ├── networkanalytics.md │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── DataProductsCatalogs_Get_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── 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 - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_AddUserRole_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_AddUserRole_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Create_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Create_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_Create_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Delete_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_GenerateStorageAccountSasToken_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_GenerateStorageAccountSasToken_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_GenerateStorageAccountSasToken_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Get_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Get_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_Get_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListByResourceGroup_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListByResourceGroup_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListByResourceGroup_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListBySubscription_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListBySubscription_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListBySubscription_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListRolesAssignments_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListRolesAssignments_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_ListRolesAssignments_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_RemoveUserRole_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_RemoveUserRole_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_RemoveUserRole_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_RotateKey_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_RotateKey_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_RotateKey_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Update_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataProducts_Update_MaximumSet_Gen.json │ │ │ │ │ ├── DataProducts_Update_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_Create_MaximumSet_Gen - generated by [MinimumSet] rule_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 - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_Delete_MaximumSet_Gen.json │ │ │ │ │ ├── DataTypes_Delete_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_GenerateStorageContainerSasToken_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_GenerateStorageContainerSasToken_MaximumSet_Gen.json │ │ │ │ │ ├── DataTypes_GenerateStorageContainerSasToken_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_Get_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_Get_MaximumSet_Gen.json │ │ │ │ │ ├── DataTypes_Get_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_ListByDataProduct_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_ListByDataProduct_MaximumSet_Gen.json │ │ │ │ │ ├── DataTypes_ListByDataProduct_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_Update_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen.json │ │ │ │ │ ├── DataTypes_Update_MaximumSet_Gen.json │ │ │ │ │ ├── DataTypes_Update_MinimumSet_Gen.json │ │ │ │ │ ├── Operations_List_MaximumSet_Gen.json │ │ │ │ │ └── Operations_List_MinimumSet_Gen.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── DataProduct.tsp │ │ │ │ ├── DataProductsCatalog.tsp │ │ │ │ ├── DataType.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 │ │ │ │ ├── models.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-playwrighttesting │ │ │ ├── playwrighttesting.md │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── Accounts_CreateOrUpdate.json │ │ │ │ │ ├── Accounts_Delete.json │ │ │ │ │ ├── Accounts_Get.json │ │ │ │ │ ├── Accounts_ListByResourceGroup.json │ │ │ │ │ ├── Accounts_ListBySubscription.json │ │ │ │ │ ├── Accounts_Update.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── Quotas_Get.json │ │ │ │ │ └── Quotas_ListBySubscription.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── Account.tsp │ │ │ │ ├── Quota.tsp │ │ │ │ ├── examples │ │ │ │ └── 2023-10-01-preview │ │ │ │ │ ├── Accounts_CreateOrUpdate.json │ │ │ │ │ ├── Accounts_Delete.json │ │ │ │ │ ├── Accounts_Get.json │ │ │ │ │ ├── Accounts_ListByResourceGroup.json │ │ │ │ │ ├── Accounts_ListBySubscription.json │ │ │ │ │ ├── Accounts_Update.json │ │ │ │ │ ├── Operations_List.json │ │ │ │ │ ├── Quotas_Get.json │ │ │ │ │ └── Quotas_ListBySubscription.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-servicenetworking │ │ │ ├── resources.json │ │ │ ├── servicenetworking.md │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ └── OperationsList.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── Association.tsp │ │ │ │ ├── Frontend.tsp │ │ │ │ ├── TrafficController.tsp │ │ │ │ ├── examples │ │ │ │ └── 2023-11-01 │ │ │ │ │ ├── AssociationDelete.json │ │ │ │ │ ├── AssociationGet.json │ │ │ │ │ ├── AssociationPatch.json │ │ │ │ │ ├── AssociationPut.json │ │ │ │ │ ├── AssociationsGet.json │ │ │ │ │ ├── FrontendDelete.json │ │ │ │ │ ├── FrontendGet.json │ │ │ │ │ ├── FrontendPatch.json │ │ │ │ │ ├── FrontendPut.json │ │ │ │ │ ├── FrontendsGet.json │ │ │ │ │ ├── OperationsList.json │ │ │ │ │ ├── TrafficControllerDelete.json │ │ │ │ │ ├── TrafficControllerGet.json │ │ │ │ │ ├── TrafficControllerPatch.json │ │ │ │ │ ├── TrafficControllerPut.json │ │ │ │ │ ├── TrafficControllersGet.json │ │ │ │ │ └── TrafficControllersGetList.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-sphere │ │ │ ├── resources.json │ │ │ ├── sphere.md │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── Catalogs_CountDevices.json │ │ │ │ │ ├── Catalogs_CreateOrUpdate.json │ │ │ │ │ ├── Catalogs_Delete.json │ │ │ │ │ ├── Catalogs_Get.json │ │ │ │ │ ├── Catalogs_ListByResourceGroup.json │ │ │ │ │ ├── Catalogs_ListBySubscription.json │ │ │ │ │ ├── Catalogs_ListDeployments.json │ │ │ │ │ ├── Catalogs_ListDeviceGroups.json │ │ │ │ │ ├── Catalogs_ListDeviceInsights.json │ │ │ │ │ ├── Catalogs_ListDevices.json │ │ │ │ │ ├── Catalogs_Update.json │ │ │ │ │ ├── Certificates_Get.json │ │ │ │ │ ├── Certificates_ListByCatalog.json │ │ │ │ │ ├── Certificates_RetrieveCertChain.json │ │ │ │ │ ├── Certificates_RetrieveProofOfPossessionNonce.json │ │ │ │ │ ├── DeleteCatalog.json │ │ │ │ │ ├── DeleteDeployment.json │ │ │ │ │ ├── DeleteDevice.json │ │ │ │ │ ├── DeleteDeviceGroup.json │ │ │ │ │ ├── DeleteImage.json │ │ │ │ │ ├── DeleteProduct.json │ │ │ │ │ ├── Deployments_CreateOrUpdate.json │ │ │ │ │ ├── Deployments_Delete.json │ │ │ │ │ ├── Deployments_Get.json │ │ │ │ │ ├── Deployments_ListByDeviceGroup.json │ │ │ │ │ ├── DeviceGroups_ClaimDevices.json │ │ │ │ │ ├── DeviceGroups_CountDevices.json │ │ │ │ │ ├── DeviceGroups_CreateOrUpdate.json │ │ │ │ │ ├── DeviceGroups_Delete.json │ │ │ │ │ ├── DeviceGroups_Get.json │ │ │ │ │ ├── DeviceGroups_ListByProduct.json │ │ │ │ │ ├── DeviceGroups_Update.json │ │ │ │ │ ├── Devices_CreateOrUpdate.json │ │ │ │ │ ├── Devices_Delete.json │ │ │ │ │ ├── Devices_GenerateCapabilityImage.json │ │ │ │ │ ├── Devices_Get.json │ │ │ │ │ ├── Devices_ListByDeviceGroup.json │ │ │ │ │ ├── Devices_Update.json │ │ │ │ │ ├── GetCatalog.json │ │ │ │ │ ├── GetCatalogsRG.json │ │ │ │ │ ├── GetCatalogsSub.json │ │ │ │ │ ├── GetCertificate.json │ │ │ │ │ ├── GetCertificates.json │ │ │ │ │ ├── GetDeployment.json │ │ │ │ │ ├── GetDeployments.json │ │ │ │ │ ├── GetDevice.json │ │ │ │ │ ├── GetDeviceGroup.json │ │ │ │ │ ├── GetDeviceGroups.json │ │ │ │ │ ├── GetDevices.json │ │ │ │ │ ├── GetImage.json │ │ │ │ │ ├── GetImages.json │ │ │ │ │ ├── GetOperations.json │ │ │ │ │ ├── GetProduct.json │ │ │ │ │ ├── GetProducts.json │ │ │ │ │ ├── Images_CreateOrUpdate.json │ │ │ │ │ ├── Images_Delete.json │ │ │ │ │ ├── Images_Get.json │ │ │ │ │ ├── Images_ListByCatalog.json │ │ │ │ │ ├── PatchCatalog.json │ │ │ │ │ ├── PatchDevice.json │ │ │ │ │ ├── PatchDeviceGroup.json │ │ │ │ │ ├── PatchProduct.json │ │ │ │ │ ├── PostClaimDevices.json │ │ │ │ │ ├── PostCountDevicesCatalog.json │ │ │ │ │ ├── PostCountDevicesDeviceGroup.json │ │ │ │ │ ├── PostCountDevicesProduct.json │ │ │ │ │ ├── PostGenerateDefaultDeviceGroups.json │ │ │ │ │ ├── PostGenerateDeviceCapabilityImage.json │ │ │ │ │ ├── PostListDeploymentsByCatalog.json │ │ │ │ │ ├── PostListDeviceGroupsCatalog.json │ │ │ │ │ ├── PostListDeviceInsightsCatalog.json │ │ │ │ │ ├── PostListDevicesByCatalog.json │ │ │ │ │ ├── PostRetrieveCatalogCertChain.json │ │ │ │ │ ├── PostRetrieveProofOfPossessionNonce.json │ │ │ │ │ ├── Products_CountDevices.json │ │ │ │ │ ├── Products_CreateOrUpdate.json │ │ │ │ │ ├── Products_Delete.json │ │ │ │ │ ├── Products_GenerateDefaultDeviceGroups.json │ │ │ │ │ ├── Products_Get.json │ │ │ │ │ ├── Products_ListByCatalog.json │ │ │ │ │ ├── Products_Update.json │ │ │ │ │ ├── PutCatalog.json │ │ │ │ │ ├── PutDeployment.json │ │ │ │ │ ├── PutDevice.json │ │ │ │ │ ├── PutDeviceGroup.json │ │ │ │ │ ├── PutImage.json │ │ │ │ │ └── PutProduct.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── Catalog.tsp │ │ │ │ ├── Certificate.tsp │ │ │ │ ├── Deployment.tsp │ │ │ │ ├── Device.tsp │ │ │ │ ├── DeviceGroup.tsp │ │ │ │ ├── Image.tsp │ │ │ │ ├── Product.tsp │ │ │ │ ├── examples │ │ │ │ └── 2022-09-01-preview │ │ │ │ │ ├── DeleteCatalog.json │ │ │ │ │ ├── DeleteDeployment.json │ │ │ │ │ ├── DeleteDevice.json │ │ │ │ │ ├── DeleteDeviceGroup.json │ │ │ │ │ ├── DeleteImage.json │ │ │ │ │ ├── DeleteProduct.json │ │ │ │ │ ├── GetCatalog.json │ │ │ │ │ ├── GetCatalogsRG.json │ │ │ │ │ ├── GetCatalogsSub.json │ │ │ │ │ ├── GetCertificate.json │ │ │ │ │ ├── GetCertificates.json │ │ │ │ │ ├── GetDeployment.json │ │ │ │ │ ├── GetDeployments.json │ │ │ │ │ ├── GetDevice.json │ │ │ │ │ ├── GetDeviceGroup.json │ │ │ │ │ ├── GetDeviceGroups.json │ │ │ │ │ ├── GetDevices.json │ │ │ │ │ ├── GetImage.json │ │ │ │ │ ├── GetImages.json │ │ │ │ │ ├── GetOperations.json │ │ │ │ │ ├── GetProduct.json │ │ │ │ │ ├── GetProducts.json │ │ │ │ │ ├── PatchCatalog.json │ │ │ │ │ ├── PatchDevice.json │ │ │ │ │ ├── PatchDeviceGroup.json │ │ │ │ │ ├── PatchProduct.json │ │ │ │ │ ├── PostClaimDevices.json │ │ │ │ │ ├── PostCountDevicesCatalog.json │ │ │ │ │ ├── PostCountDevicesDeviceGroup.json │ │ │ │ │ ├── PostCountDevicesProduct.json │ │ │ │ │ ├── PostGenerateDefaultDeviceGroups.json │ │ │ │ │ ├── PostGenerateDeviceCapabilityImage.json │ │ │ │ │ ├── PostListDeploymentsByCatalog.json │ │ │ │ │ ├── PostListDeviceGroupsCatalog.json │ │ │ │ │ ├── PostListDeviceInsightsCatalog.json │ │ │ │ │ ├── PostListDevicesByCatalog.json │ │ │ │ │ ├── PostRetrieveCatalogCertChain.json │ │ │ │ │ ├── PostRetrieveProofOfPossessionNonce.json │ │ │ │ │ ├── PutCatalog.json │ │ │ │ │ ├── PutDeployment.json │ │ │ │ │ ├── PutDevice.json │ │ │ │ │ ├── PutDeviceGroup.json │ │ │ │ │ ├── PutImage.json │ │ │ │ │ └── PutProduct.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-storage │ │ │ ├── resources.json │ │ │ ├── storage.md │ │ │ ├── swagger-output │ │ │ │ ├── examples │ │ │ │ │ ├── BlobContainersClearLegalHold.json │ │ │ │ │ ├── BlobContainersDelete.json │ │ │ │ │ ├── BlobContainersDeleteImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersExtendImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersGet.json │ │ │ │ │ ├── BlobContainersGetImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersGetWithAllowProtectedAppendWritesAll.json │ │ │ │ │ ├── BlobContainersLease_Acquire.json │ │ │ │ │ ├── BlobContainersLease_Break.json │ │ │ │ │ ├── BlobContainersList.json │ │ │ │ │ ├── BlobContainersLockImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersPatch.json │ │ │ │ │ ├── BlobContainersPut.json │ │ │ │ │ ├── BlobContainersPutDefaultEncryptionScope.json │ │ │ │ │ ├── BlobContainersPutImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersPutImmutabilityPolicyAllowProtectedAppendWritesAll.json │ │ │ │ │ ├── BlobContainersPutObjectLevelWorm.json │ │ │ │ │ ├── BlobContainersSetLegalHold.json │ │ │ │ │ ├── BlobContainersSetLegalHoldAllowProtectedAppendWritesAll.json │ │ │ │ │ ├── BlobContainers_ClearLegalHold.json │ │ │ │ │ ├── BlobContainers_CreateOrUpdateImmutabilityPolicy_Create_Or_Update_Immutability_Policy.json │ │ │ │ │ ├── BlobContainers_CreateOrUpdateImmutabilityPolicy_Create_Or_Update_Immutability_Policy_With_Allow_Protected_Append_Writes_All.json │ │ │ │ │ ├── BlobContainers_Create_Put_Container_With_Default_Encryption_Scope.json │ │ │ │ │ ├── BlobContainers_Create_Put_Container_With_Object_Level_Worm.json │ │ │ │ │ ├── BlobContainers_Create_Put_Containers.json │ │ │ │ │ ├── BlobContainers_Delete.json │ │ │ │ │ ├── BlobContainers_DeleteImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainers_ExtendImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainers_GetImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainers_Get_Get_Blob_Containers_Get_With_Allow_Protected_Append_Writes_All.json │ │ │ │ │ ├── BlobContainers_Get_Get_Containers.json │ │ │ │ │ ├── BlobContainers_Lease_Acquire_A_Lease_On_A_Container.json │ │ │ │ │ ├── BlobContainers_Lease_Break_A_Lease_On_A_Container.json │ │ │ │ │ ├── BlobContainers_List_List_Containers.json │ │ │ │ │ ├── BlobContainers_List_List_Deleted_Containers.json │ │ │ │ │ ├── BlobContainers_LockImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainers_ObjectLevelWorm.json │ │ │ │ │ ├── BlobContainers_SetLegalHold_Set_Legal_Hold_Containers.json │ │ │ │ │ ├── BlobContainers_SetLegalHold_Set_Legal_Hold_Containers_With_Allow_Protected_Append_Writes_All.json │ │ │ │ │ ├── BlobContainers_Update.json │ │ │ │ │ ├── BlobInventoryPolicies_CreateOrUpdate_Storage_Account_Set_Blob_Inventory_Policy.json │ │ │ │ │ ├── BlobInventoryPolicies_CreateOrUpdate_Storage_Account_Set_Blob_Inventory_Policy_Include_Delete_And_New_Schema_For_Hns_Account.json │ │ │ │ │ ├── BlobInventoryPolicies_CreateOrUpdate_Storage_Account_Set_Blob_Inventory_Policy_Include_Delete_And_New_Schema_For_Non_Hns_Account.json │ │ │ │ │ ├── BlobInventoryPolicies_Delete.json │ │ │ │ │ ├── BlobInventoryPolicies_Get.json │ │ │ │ │ ├── BlobInventoryPolicies_List.json │ │ │ │ │ ├── BlobRangesRestore.json │ │ │ │ │ ├── BlobServicesGet.json │ │ │ │ │ ├── BlobServicesList.json │ │ │ │ │ ├── BlobServicesPut.json │ │ │ │ │ ├── BlobServicesPutAllowPermanentDelete.json │ │ │ │ │ ├── BlobServicesPutLastAccessTimeBasedTracking.json │ │ │ │ │ ├── BlobServices_GetServiceProperties.json │ │ │ │ │ ├── BlobServices_List.json │ │ │ │ │ ├── BlobServices_SetServiceProperties_Blob_Services_Put_Allow_Permanent_Delete.json │ │ │ │ │ ├── BlobServices_SetServiceProperties_Blob_Services_Put_Last_Access_Time_Based_Tracking.json │ │ │ │ │ ├── BlobServices_SetServiceProperties_Put_Blob_Services.json │ │ │ │ │ ├── DeletedAccountGet.json │ │ │ │ │ ├── DeletedAccountList.json │ │ │ │ │ ├── DeletedAccounts_Get.json │ │ │ │ │ ├── DeletedAccounts_List.json │ │ │ │ │ ├── DeletedBlobContainersList.json │ │ │ │ │ ├── DeletedFileSharesList.json │ │ │ │ │ ├── EncryptionScopes_Get.json │ │ │ │ │ ├── EncryptionScopes_List.json │ │ │ │ │ ├── EncryptionScopes_Patch.json │ │ │ │ │ ├── EncryptionScopes_Put_Storage_Account_Put_Encryption_Scope.json │ │ │ │ │ ├── EncryptionScopes_Put_Storage_Account_Put_Encryption_Scope_With_Infrastructure_Encryption.json │ │ │ │ │ ├── FileServicesGet.json │ │ │ │ │ ├── FileServicesList.json │ │ │ │ │ ├── FileServicesPut.json │ │ │ │ │ ├── FileServicesPut_EnableSMBMultichannel.json │ │ │ │ │ ├── FileServicesPut_EnableSecureSmbFeatures.json │ │ │ │ │ ├── FileServices_GetServiceProperties.json │ │ │ │ │ ├── FileServices_List.json │ │ │ │ │ ├── FileServices_SetServiceProperties_Put_File_Services.json │ │ │ │ │ ├── FileServices_SetServiceProperties_Put_File_Services_Enable_Secure_Smb_Features.json │ │ │ │ │ ├── FileServices_SetServiceProperties_Put_File_Services_Enable_Smb_Multichannel.json │ │ │ │ │ ├── FileShareAclsPatch.json │ │ │ │ │ ├── FileShareSnapshotsList.json │ │ │ │ │ ├── FileSharesDelete.json │ │ │ │ │ ├── FileSharesGet.json │ │ │ │ │ ├── FileSharesGet_Stats.json │ │ │ │ │ ├── FileSharesLease_Acquire.json │ │ │ │ │ ├── FileSharesLease_Break.json │ │ │ │ │ ├── FileSharesList.json │ │ │ │ │ ├── FileSharesPatch.json │ │ │ │ │ ├── FileSharesPut.json │ │ │ │ │ ├── FileSharesPut_AccessTier.json │ │ │ │ │ ├── FileSharesPut_NFS.json │ │ │ │ │ ├── FileSharesRestore.json │ │ │ │ │ ├── FileShares_Create_Create_Nfs_Shares.json │ │ │ │ │ ├── FileShares_Create_Put_Shares.json │ │ │ │ │ ├── FileShares_Create_Put_Shares_With_Access_Tier.json │ │ │ │ │ ├── FileShares_Delete.json │ │ │ │ │ ├── FileShares_Get_Get_Share_Stats.json │ │ │ │ │ ├── FileShares_Get_Get_Shares.json │ │ │ │ │ ├── FileShares_Lease_Acquire_A_Lease_On_A_Share.json │ │ │ │ │ ├── FileShares_Lease_Break_A_Lease_On_A_Share.json │ │ │ │ │ ├── FileShares_List_List_Deleted_Shares.json │ │ │ │ │ ├── FileShares_List_List_Share_Snapshots.json │ │ │ │ │ ├── FileShares_List_List_Shares.json │ │ │ │ │ ├── FileShares_Restore.json │ │ │ │ │ ├── FileShares_Update_Update_Share_Acls.json │ │ │ │ │ ├── FileShares_Update_Update_Shares.json │ │ │ │ │ ├── LocalUserCreate.json │ │ │ │ │ ├── LocalUserDelete.json │ │ │ │ │ ├── LocalUserGet.json │ │ │ │ │ ├── LocalUserListKeys.json │ │ │ │ │ ├── LocalUserRegeneratePassword.json │ │ │ │ │ ├── LocalUserUpdate.json │ │ │ │ │ ├── LocalUsersList.json │ │ │ │ │ ├── LocalUsers_CreateOrUpdate_Create_Local_User.json │ │ │ │ │ ├── LocalUsers_CreateOrUpdate_Update_Local_User.json │ │ │ │ │ ├── LocalUsers_Delete.json │ │ │ │ │ ├── LocalUsers_Get.json │ │ │ │ │ ├── LocalUsers_List.json │ │ │ │ │ ├── LocalUsers_ListKeys.json │ │ │ │ │ ├── LocalUsers_RegeneratePassword.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policies.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_Base_Blob_Days_After_Creation_Actions.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_Cold_Tier_Actions.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_For_Block_And_Append_Blobs.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_Hot_Tier_Actions.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_Last_Access_Time_Based_Blob_Actions.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_Last_Tier_Change_Time_Actions.json │ │ │ │ │ ├── ManagementPolicies_CreateOrUpdate_Storage_Account_Set_Management_Policy_With_Snapshot_And_Version.json │ │ │ │ │ ├── ManagementPolicies_Delete.json │ │ │ │ │ ├── ManagementPolicies_Get.json │ │ │ │ │ ├── NfsV3AccountCreate.json │ │ │ │ │ ├── ObjectLevelWormContainerMigration.json │ │ │ │ │ ├── ObjectReplicationPolicies_CreateOrUpdate_Storage_Account_Create_Object_Replication_Policy_On_Destination.json │ │ │ │ │ ├── ObjectReplicationPolicies_CreateOrUpdate_Storage_Account_Create_Object_Replication_Policy_On_Source.json │ │ │ │ │ ├── ObjectReplicationPolicies_CreateOrUpdate_Storage_Account_Update_Object_Replication_Policy_On_Destination.json │ │ │ │ │ ├── ObjectReplicationPolicies_CreateOrUpdate_Storage_Account_Update_Object_Replication_Policy_On_Source.json │ │ │ │ │ ├── ObjectReplicationPolicies_Delete.json │ │ │ │ │ ├── ObjectReplicationPolicies_Get.json │ │ │ │ │ ├── ObjectReplicationPolicies_List.json │ │ │ │ │ ├── OperationsList.json │ │ │ │ │ ├── PrivateEndpointConnections_Delete.json │ │ │ │ │ ├── PrivateEndpointConnections_Get.json │ │ │ │ │ ├── PrivateEndpointConnections_List.json │ │ │ │ │ ├── PrivateEndpointConnections_Put.json │ │ │ │ │ ├── PrivateLinkResources_ListByStorageAccount.json │ │ │ │ │ ├── QueueOperationDelete.json │ │ │ │ │ ├── QueueOperationGet.json │ │ │ │ │ ├── QueueOperationList.json │ │ │ │ │ ├── QueueOperationPatch.json │ │ │ │ │ ├── QueueOperationPut.json │ │ │ │ │ ├── QueueOperationPutWithMetadata.json │ │ │ │ │ ├── QueueServicesGet.json │ │ │ │ │ ├── QueueServicesList.json │ │ │ │ │ ├── QueueServicesPut.json │ │ │ │ │ ├── QueueServices_GetServiceProperties.json │ │ │ │ │ ├── QueueServices_List.json │ │ │ │ │ ├── QueueServices_SetServiceProperties.json │ │ │ │ │ ├── Queue_Create_Queue_Operation_Put.json │ │ │ │ │ ├── Queue_Create_Queue_Operation_Put_With_Metadata.json │ │ │ │ │ ├── Queue_Delete.json │ │ │ │ │ ├── Queue_Get.json │ │ │ │ │ ├── Queue_List.json │ │ │ │ │ ├── Queue_Update.json │ │ │ │ │ ├── SKUList.json │ │ │ │ │ ├── StorageAccountAbortHierarchicalNamespaceMigration.json │ │ │ │ │ ├── StorageAccountCheckNameAvailability.json │ │ │ │ │ ├── StorageAccountCreate.json │ │ │ │ │ ├── StorageAccountCreateAllowedCopyScopeToAAD.json │ │ │ │ │ ├── StorageAccountCreateAllowedCopyScopeToPrivateLink.json │ │ │ │ │ ├── StorageAccountCreateDisallowPublicNetworkAccess.json │ │ │ │ │ ├── StorageAccountCreateDnsEndpointTypeToAzureDnsZone.json │ │ │ │ │ ├── StorageAccountCreateDnsEndpointTypeToStandard.json │ │ │ │ │ ├── StorageAccountCreateEnablePublicNetworkAccess.json │ │ │ │ │ ├── StorageAccountCreateObjectReplicationPolicyOnDestination.json │ │ │ │ │ ├── StorageAccountCreateObjectReplicationPolicyOnSource.json │ │ │ │ │ ├── StorageAccountCreatePremiumBlockBlobStorage.json │ │ │ │ │ ├── StorageAccountCreateUserAssignedEncryptionIdentityWithCMK.json │ │ │ │ │ ├── StorageAccountCreateUserAssignedIdentityWithFederatedIdentityClientId.json │ │ │ │ │ ├── StorageAccountCreateWithImmutabilityPolicy.json │ │ │ │ │ ├── StorageAccountDelete.json │ │ │ │ │ ├── StorageAccountDeleteBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountDeleteManagementPolicy.json │ │ │ │ │ ├── StorageAccountDeleteObjectReplicationPolicy.json │ │ │ │ │ ├── StorageAccountDeletePrivateEndpointConnection.json │ │ │ │ │ ├── StorageAccountEnableAD.json │ │ │ │ │ ├── StorageAccountEnableCMK.json │ │ │ │ │ ├── StorageAccountEncryptionScopeList.json │ │ │ │ │ ├── StorageAccountFailover.json │ │ │ │ │ ├── StorageAccountFailoverPlanned.json │ │ │ │ │ ├── StorageAccountGetAsyncSkuConversionStatus.json │ │ │ │ │ ├── StorageAccountGetBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountGetEncryptionScope.json │ │ │ │ │ ├── StorageAccountGetManagementPolicy.json │ │ │ │ │ ├── StorageAccountGetObjectReplicationPolicy.json │ │ │ │ │ ├── StorageAccountGetPrivateEndpointConnection.json │ │ │ │ │ ├── StorageAccountGetProperties.json │ │ │ │ │ ├── StorageAccountGetPropertiesCMKEnabled.json │ │ │ │ │ ├── StorageAccountGetPropertiesCMKVersionExpirationTime.json │ │ │ │ │ ├── StorageAccountHierarchicalNamespaceMigration.json │ │ │ │ │ ├── StorageAccountList.json │ │ │ │ │ ├── StorageAccountListAccountSAS.json │ │ │ │ │ ├── StorageAccountListBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountListByResourceGroup.json │ │ │ │ │ ├── StorageAccountListKeys.json │ │ │ │ │ ├── StorageAccountListLocationUsage.json │ │ │ │ │ ├── StorageAccountListObjectReplicationPolicies.json │ │ │ │ │ ├── StorageAccountListPrivateEndpointConnections.json │ │ │ │ │ ├── StorageAccountListPrivateLinkResources.json │ │ │ │ │ ├── StorageAccountListServiceSAS.json │ │ │ │ │ ├── StorageAccountPatchEncryptionScope.json │ │ │ │ │ ├── StorageAccountPutEncryptionScope.json │ │ │ │ │ ├── StorageAccountPutEncryptionScopeWithInfrastructureEncryption.json │ │ │ │ │ ├── StorageAccountPutPrivateEndpointConnection.json │ │ │ │ │ ├── StorageAccountRegenerateKerbKey.json │ │ │ │ │ ├── StorageAccountRegenerateKey.json │ │ │ │ │ ├── StorageAccountRevokeUserDelegationKeys.json │ │ │ │ │ ├── StorageAccountSetBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountSetBlobInventoryPolicyIncludeDeleteAndNewSchemaForHnsAccount.json │ │ │ │ │ ├── StorageAccountSetBlobInventoryPolicyIncludeDeleteAndNewSchemaForNonHnsAccount.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyColdTierActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyForBlockAndAppendBlobs.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyHotTierActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyWithSnapshotAndVersion.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy_BaseBlobDaysAfterCreationActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy_LastAccessTimeBasedBlobActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy_LastTierChangeTimeActions.json │ │ │ │ │ ├── StorageAccountUpdate.json │ │ │ │ │ ├── StorageAccountUpdateAllowedCopyScopeToAAD.json │ │ │ │ │ ├── StorageAccountUpdateDisablePublicNetworkAccess.json │ │ │ │ │ ├── StorageAccountUpdateObjectReplicationPolicyOnDestination.json │ │ │ │ │ ├── StorageAccountUpdateObjectReplicationPolicyOnSource.json │ │ │ │ │ ├── StorageAccountUpdateUserAssignedEncryptionIdentityWithCMK.json │ │ │ │ │ ├── StorageAccountUpdateUserAssignedIdentityWithFederatedIdentityClientId.json │ │ │ │ │ ├── StorageAccountUpdateWithImmutabilityPolicy.json │ │ │ │ │ ├── StorageAccounts_AbortHierarchicalNamespaceMigration.json │ │ │ │ │ ├── StorageAccounts_CheckNameAvailability.json │ │ │ │ │ ├── StorageAccounts_Create_Nfs_V3_Account_Create.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Allowed_Copy_Scope_To_Aad.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Allowed_Copy_Scope_To_Private_Link.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Disallow_Public_Network_Access.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Dns_Endpoint_Type_To_Azure_Dns_Zone.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Dns_Endpoint_Type_To_Standard.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Enable_Public_Network_Access.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_Premium_Block_Blob_Storage.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_User_Assigned_Encryption_Identity_With_Cmk.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_User_Assigned_Identity_With_Federated_Identity_Client_Id.json │ │ │ │ │ ├── StorageAccounts_Create_Storage_Account_Create_With_Immutability_Policy.json │ │ │ │ │ ├── StorageAccounts_Delete.json │ │ │ │ │ ├── StorageAccounts_Failover_Storage_Account_Failover.json │ │ │ │ │ ├── StorageAccounts_Failover_Storage_Account_Failover_Planned.json │ │ │ │ │ ├── StorageAccounts_GetProperties_Storage_Account_Get_Async_Sku_Conversion_Status.json │ │ │ │ │ ├── StorageAccounts_GetProperties_Storage_Account_Get_Properties.json │ │ │ │ │ ├── StorageAccounts_GetProperties_Storage_Account_Get_Properties_Cmk_Enabled.json │ │ │ │ │ ├── StorageAccounts_GetProperties_Storage_Account_Get_Properties_Cmk_Version_Expiration_Time.json │ │ │ │ │ ├── StorageAccounts_HierarchicalNamespaceMigration.json │ │ │ │ │ ├── StorageAccounts_List.json │ │ │ │ │ ├── StorageAccounts_ListAccountSAS.json │ │ │ │ │ ├── StorageAccounts_ListByResourceGroup.json │ │ │ │ │ ├── StorageAccounts_ListKeys.json │ │ │ │ │ ├── StorageAccounts_ListServiceSAS.json │ │ │ │ │ ├── StorageAccounts_RegenerateKey_Storage_Account_Regenerate_Kerb_Key.json │ │ │ │ │ ├── StorageAccounts_RegenerateKey_Storage_Account_Regenerate_Key.json │ │ │ │ │ ├── StorageAccounts_RestoreBlobRanges.json │ │ │ │ │ ├── StorageAccounts_RevokeUserDelegationKeys.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Enable_Ad.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Enable_Cmk.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Update.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Update_Allowed_Copy_Scope_To_Aad.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Update_Disable_Public_Network_Access.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Update_User_Assigned_Encryption_Identity_With_Cmk.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Update_User_Assigned_Identity_With_Federated_Identity_Client_Id.json │ │ │ │ │ ├── StorageAccounts_Update_Storage_Account_Update_With_Immutability_Policy.json │ │ │ │ │ ├── TableOperationDelete.json │ │ │ │ │ ├── TableOperationGet.json │ │ │ │ │ ├── TableOperationList.json │ │ │ │ │ ├── TableOperationPatch.json │ │ │ │ │ ├── TableOperationPut.json │ │ │ │ │ ├── TableOperationPutOrPatchAcls.json │ │ │ │ │ ├── TableServicesGet.json │ │ │ │ │ ├── TableServicesList.json │ │ │ │ │ ├── TableServicesPut.json │ │ │ │ │ ├── TableServices_GetServiceProperties.json │ │ │ │ │ ├── TableServices_List.json │ │ │ │ │ ├── TableServices_SetServiceProperties.json │ │ │ │ │ ├── Table_Create_Table_Operation_Put.json │ │ │ │ │ ├── Table_Create_Table_Operation_Put_Or_Patch_Acls.json │ │ │ │ │ ├── Table_Delete.json │ │ │ │ │ ├── Table_Get.json │ │ │ │ │ ├── Table_List.json │ │ │ │ │ ├── Table_Update_Table_Operation_Patch.json │ │ │ │ │ └── Table_Update_Table_Operation_Put_Or_Patch_Acls.json │ │ │ │ └── swagger.json │ │ │ └── tsp-output │ │ │ │ ├── BlobContainer.tsp │ │ │ │ ├── BlobInventoryPolicy.tsp │ │ │ │ ├── BlobServiceProperties.tsp │ │ │ │ ├── DeletedAccount.tsp │ │ │ │ ├── EncryptionScope.tsp │ │ │ │ ├── FileServiceProperties.tsp │ │ │ │ ├── FileShare.tsp │ │ │ │ ├── ImmutabilityPolicy.tsp │ │ │ │ ├── LocalUser.tsp │ │ │ │ ├── ManagementPolicy.tsp │ │ │ │ ├── ObjectReplicationPolicy.tsp │ │ │ │ ├── PrivateEndpointConnection.tsp │ │ │ │ ├── QueueServiceProperties.tsp │ │ │ │ ├── StorageAccount.tsp │ │ │ │ ├── StorageQueue.tsp │ │ │ │ ├── Table.tsp │ │ │ │ ├── TableServiceProperties.tsp │ │ │ │ ├── back-compatible.tsp │ │ │ │ ├── examples │ │ │ │ └── 2022-09-01 │ │ │ │ │ ├── BlobContainersClearLegalHold.json │ │ │ │ │ ├── BlobContainersDelete.json │ │ │ │ │ ├── BlobContainersDeleteImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersExtendImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersGet.json │ │ │ │ │ ├── BlobContainersGetImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersGetWithAllowProtectedAppendWritesAll.json │ │ │ │ │ ├── BlobContainersLease_Acquire.json │ │ │ │ │ ├── BlobContainersLease_Break.json │ │ │ │ │ ├── BlobContainersList.json │ │ │ │ │ ├── BlobContainersLockImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersPatch.json │ │ │ │ │ ├── BlobContainersPut.json │ │ │ │ │ ├── BlobContainersPutDefaultEncryptionScope.json │ │ │ │ │ ├── BlobContainersPutImmutabilityPolicy.json │ │ │ │ │ ├── BlobContainersPutImmutabilityPolicyAllowProtectedAppendWritesAll.json │ │ │ │ │ ├── BlobContainersPutObjectLevelWorm.json │ │ │ │ │ ├── BlobContainersSetLegalHold.json │ │ │ │ │ ├── BlobContainersSetLegalHoldAllowProtectedAppendWritesAll.json │ │ │ │ │ ├── BlobRangesRestore.json │ │ │ │ │ ├── BlobServicesGet.json │ │ │ │ │ ├── BlobServicesList.json │ │ │ │ │ ├── BlobServicesPut.json │ │ │ │ │ ├── BlobServicesPutAllowPermanentDelete.json │ │ │ │ │ ├── BlobServicesPutLastAccessTimeBasedTracking.json │ │ │ │ │ ├── DeletedAccountGet.json │ │ │ │ │ ├── DeletedAccountList.json │ │ │ │ │ ├── DeletedBlobContainersList.json │ │ │ │ │ ├── DeletedFileSharesList.json │ │ │ │ │ ├── FileServicesGet.json │ │ │ │ │ ├── FileServicesList.json │ │ │ │ │ ├── FileServicesPut.json │ │ │ │ │ ├── FileServicesPut_EnableSMBMultichannel.json │ │ │ │ │ ├── FileServicesPut_EnableSecureSmbFeatures.json │ │ │ │ │ ├── FileShareAclsPatch.json │ │ │ │ │ ├── FileShareSnapshotsList.json │ │ │ │ │ ├── FileSharesDelete.json │ │ │ │ │ ├── FileSharesGet.json │ │ │ │ │ ├── FileSharesGet_Stats.json │ │ │ │ │ ├── FileSharesLease_Acquire.json │ │ │ │ │ ├── FileSharesLease_Break.json │ │ │ │ │ ├── FileSharesList.json │ │ │ │ │ ├── FileSharesPatch.json │ │ │ │ │ ├── FileSharesPut.json │ │ │ │ │ ├── FileSharesPut_AccessTier.json │ │ │ │ │ ├── FileSharesPut_NFS.json │ │ │ │ │ ├── FileSharesRestore.json │ │ │ │ │ ├── LocalUserCreate.json │ │ │ │ │ ├── LocalUserDelete.json │ │ │ │ │ ├── LocalUserGet.json │ │ │ │ │ ├── LocalUserListKeys.json │ │ │ │ │ ├── LocalUserRegeneratePassword.json │ │ │ │ │ ├── LocalUserUpdate.json │ │ │ │ │ ├── LocalUsersList.json │ │ │ │ │ ├── NfsV3AccountCreate.json │ │ │ │ │ ├── ObjectLevelWormContainerMigration.json │ │ │ │ │ ├── OperationsList.json │ │ │ │ │ ├── QueueOperationDelete.json │ │ │ │ │ ├── QueueOperationGet.json │ │ │ │ │ ├── QueueOperationList.json │ │ │ │ │ ├── QueueOperationPatch.json │ │ │ │ │ ├── QueueOperationPut.json │ │ │ │ │ ├── QueueOperationPutWithMetadata.json │ │ │ │ │ ├── QueueServicesGet.json │ │ │ │ │ ├── QueueServicesList.json │ │ │ │ │ ├── QueueServicesPut.json │ │ │ │ │ ├── SKUList.json │ │ │ │ │ ├── StorageAccountAbortHierarchicalNamespaceMigration.json │ │ │ │ │ ├── StorageAccountCheckNameAvailability.json │ │ │ │ │ ├── StorageAccountCreate.json │ │ │ │ │ ├── StorageAccountCreateAllowedCopyScopeToAAD.json │ │ │ │ │ ├── StorageAccountCreateAllowedCopyScopeToPrivateLink.json │ │ │ │ │ ├── StorageAccountCreateDisallowPublicNetworkAccess.json │ │ │ │ │ ├── StorageAccountCreateDnsEndpointTypeToAzureDnsZone.json │ │ │ │ │ ├── StorageAccountCreateDnsEndpointTypeToStandard.json │ │ │ │ │ ├── StorageAccountCreateEnablePublicNetworkAccess.json │ │ │ │ │ ├── StorageAccountCreateObjectReplicationPolicyOnDestination.json │ │ │ │ │ ├── StorageAccountCreateObjectReplicationPolicyOnSource.json │ │ │ │ │ ├── StorageAccountCreatePremiumBlockBlobStorage.json │ │ │ │ │ ├── StorageAccountCreateUserAssignedEncryptionIdentityWithCMK.json │ │ │ │ │ ├── StorageAccountCreateUserAssignedIdentityWithFederatedIdentityClientId.json │ │ │ │ │ ├── StorageAccountCreateWithImmutabilityPolicy.json │ │ │ │ │ ├── StorageAccountDelete.json │ │ │ │ │ ├── StorageAccountDeleteBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountDeleteManagementPolicy.json │ │ │ │ │ ├── StorageAccountDeleteObjectReplicationPolicy.json │ │ │ │ │ ├── StorageAccountDeletePrivateEndpointConnection.json │ │ │ │ │ ├── StorageAccountEnableAD.json │ │ │ │ │ ├── StorageAccountEnableCMK.json │ │ │ │ │ ├── StorageAccountEncryptionScopeList.json │ │ │ │ │ ├── StorageAccountFailover.json │ │ │ │ │ ├── StorageAccountFailoverPlanned.json │ │ │ │ │ ├── StorageAccountGetAsyncSkuConversionStatus.json │ │ │ │ │ ├── StorageAccountGetBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountGetEncryptionScope.json │ │ │ │ │ ├── StorageAccountGetManagementPolicy.json │ │ │ │ │ ├── StorageAccountGetObjectReplicationPolicy.json │ │ │ │ │ ├── StorageAccountGetPrivateEndpointConnection.json │ │ │ │ │ ├── StorageAccountGetProperties.json │ │ │ │ │ ├── StorageAccountGetPropertiesCMKEnabled.json │ │ │ │ │ ├── StorageAccountGetPropertiesCMKVersionExpirationTime.json │ │ │ │ │ ├── StorageAccountHierarchicalNamespaceMigration.json │ │ │ │ │ ├── StorageAccountList.json │ │ │ │ │ ├── StorageAccountListAccountSAS.json │ │ │ │ │ ├── StorageAccountListBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountListByResourceGroup.json │ │ │ │ │ ├── StorageAccountListKeys.json │ │ │ │ │ ├── StorageAccountListLocationUsage.json │ │ │ │ │ ├── StorageAccountListObjectReplicationPolicies.json │ │ │ │ │ ├── StorageAccountListPrivateEndpointConnections.json │ │ │ │ │ ├── StorageAccountListPrivateLinkResources.json │ │ │ │ │ ├── StorageAccountListServiceSAS.json │ │ │ │ │ ├── StorageAccountPatchEncryptionScope.json │ │ │ │ │ ├── StorageAccountPutEncryptionScope.json │ │ │ │ │ ├── StorageAccountPutEncryptionScopeWithInfrastructureEncryption.json │ │ │ │ │ ├── StorageAccountPutPrivateEndpointConnection.json │ │ │ │ │ ├── StorageAccountRegenerateKerbKey.json │ │ │ │ │ ├── StorageAccountRegenerateKey.json │ │ │ │ │ ├── StorageAccountRevokeUserDelegationKeys.json │ │ │ │ │ ├── StorageAccountSetBlobInventoryPolicy.json │ │ │ │ │ ├── StorageAccountSetBlobInventoryPolicyIncludeDeleteAndNewSchemaForHnsAccount.json │ │ │ │ │ ├── StorageAccountSetBlobInventoryPolicyIncludeDeleteAndNewSchemaForNonHnsAccount.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyColdTierActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyForBlockAndAppendBlobs.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyHotTierActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicyWithSnapshotAndVersion.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy_BaseBlobDaysAfterCreationActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy_LastAccessTimeBasedBlobActions.json │ │ │ │ │ ├── StorageAccountSetManagementPolicy_LastTierChangeTimeActions.json │ │ │ │ │ ├── StorageAccountUpdate.json │ │ │ │ │ ├── StorageAccountUpdateAllowedCopyScopeToAAD.json │ │ │ │ │ ├── StorageAccountUpdateDisablePublicNetworkAccess.json │ │ │ │ │ ├── StorageAccountUpdateObjectReplicationPolicyOnDestination.json │ │ │ │ │ ├── StorageAccountUpdateObjectReplicationPolicyOnSource.json │ │ │ │ │ ├── StorageAccountUpdateUserAssignedEncryptionIdentityWithCMK.json │ │ │ │ │ ├── StorageAccountUpdateUserAssignedIdentityWithFederatedIdentityClientId.json │ │ │ │ │ ├── StorageAccountUpdateWithImmutabilityPolicy.json │ │ │ │ │ ├── TableOperationDelete.json │ │ │ │ │ ├── TableOperationGet.json │ │ │ │ │ ├── TableOperationList.json │ │ │ │ │ ├── TableOperationPatch.json │ │ │ │ │ ├── TableOperationPut.json │ │ │ │ │ ├── TableOperationPutOrPatchAcls.json │ │ │ │ │ ├── TableServicesGet.json │ │ │ │ │ ├── TableServicesList.json │ │ │ │ │ └── TableServicesPut.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── arm-test │ │ │ ├── resources.json │ │ │ ├── swagger-output │ │ │ │ └── swagger.json │ │ │ ├── swagger │ │ │ │ ├── array-default.json │ │ │ │ ├── basic.json │ │ │ │ ├── common-types │ │ │ │ │ └── resource-management │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── privatelinks.json │ │ │ │ │ │ └── types.json │ │ │ │ │ │ ├── v2 │ │ │ │ │ │ ├── privatelinks.json │ │ │ │ │ │ └── types.json │ │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── managedidentity.json │ │ │ │ │ │ ├── privatelinks.json │ │ │ │ │ │ └── types.json │ │ │ │ ├── dict-properties.json │ │ │ │ └── singleton.json │ │ │ ├── test.md │ │ │ └── tsp-output │ │ │ │ ├── ArrayDefault.tsp │ │ │ │ ├── DictProperty.tsp │ │ │ │ ├── Employee.tsp │ │ │ │ ├── Enroll.tsp │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── batch │ │ │ ├── batch.md │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── examples │ │ │ │ └── 2022-01-01.15.0 │ │ │ │ │ ├── AccountListPoolNodeCounts.json │ │ │ │ │ ├── AccountListSupportedImages.json │ │ │ │ │ ├── ApplicationGet.json │ │ │ │ │ ├── ApplicationList.json │ │ │ │ │ ├── CertificateAdd.json │ │ │ │ │ ├── CertificateCancelDelete.json │ │ │ │ │ ├── CertificateDelete.json │ │ │ │ │ ├── CertificateGet.json │ │ │ │ │ ├── CertificateList.json │ │ │ │ │ ├── ComputeNodeExtensionGet.json │ │ │ │ │ ├── ComputeNodeExtensionList.json │ │ │ │ │ ├── FileDeleteFromNode.json │ │ │ │ │ ├── FileDeleteFromTask.json │ │ │ │ │ ├── FileGetFromNode.json │ │ │ │ │ ├── FileGetFromTask.json │ │ │ │ │ ├── FileGetPropertiesFromNode.json │ │ │ │ │ ├── FileGetPropertiesFromTask.json │ │ │ │ │ ├── FileListFromNode.json │ │ │ │ │ ├── FileListFromTask.json │ │ │ │ │ ├── JobAdd_Basic.json │ │ │ │ │ ├── JobAdd_Complex.json │ │ │ │ │ ├── JobDelete.json │ │ │ │ │ ├── JobDisable.json │ │ │ │ │ ├── JobEnable.json │ │ │ │ │ ├── JobGet.json │ │ │ │ │ ├── JobGetLifetimeStatistics.json │ │ │ │ │ ├── JobGetTaskCounts.json │ │ │ │ │ ├── JobList.json │ │ │ │ │ ├── JobListFromJobSchedule.json │ │ │ │ │ ├── JobListPreparationAndReleaseTaskStatus.json │ │ │ │ │ ├── JobPatch.json │ │ │ │ │ ├── JobScheduleAdd_Basic.json │ │ │ │ │ ├── JobScheduleAdd_Complex.json │ │ │ │ │ ├── JobScheduleDelete.json │ │ │ │ │ ├── JobScheduleDisable.json │ │ │ │ │ ├── JobScheduleEnable.json │ │ │ │ │ ├── JobScheduleExists.json │ │ │ │ │ ├── JobScheduleGet.json │ │ │ │ │ ├── JobScheduleList.json │ │ │ │ │ ├── JobSchedulePatch.json │ │ │ │ │ ├── JobScheduleTerminate.json │ │ │ │ │ ├── JobScheduleUpdate.json │ │ │ │ │ ├── JobTerminate.json │ │ │ │ │ ├── JobUpdate.json │ │ │ │ │ ├── NodeAddUser.json │ │ │ │ │ ├── NodeDeleteUser.json │ │ │ │ │ ├── NodeDisableScheduling.json │ │ │ │ │ ├── NodeEnableScheduling.json │ │ │ │ │ ├── NodeGetRemoteDesktop.json │ │ │ │ │ ├── NodeGetRemoteLoginSettings.json │ │ │ │ │ ├── NodeGet_Basic.json │ │ │ │ │ ├── NodeList.json │ │ │ │ │ ├── NodeReboot.json │ │ │ │ │ ├── NodeReimage.json │ │ │ │ │ ├── NodeUpdateUser.json │ │ │ │ │ ├── NodeUploadBatchServiceLogs.json │ │ │ │ │ ├── PoolAdd_CloudServiceConfiguration.json │ │ │ │ │ ├── PoolAdd_MountConfiguration.json │ │ │ │ │ ├── PoolAdd_VirtualMachineConfiguration.json │ │ │ │ │ ├── PoolAdd_VirtualMachineConfigurationWithContainers.json │ │ │ │ │ ├── PoolAdd_VirtualMachineConfigurationWithExtensions.json │ │ │ │ │ ├── PoolDelete.json │ │ │ │ │ ├── PoolDisableAutoScale.json │ │ │ │ │ ├── PoolEnableAutoscale.json │ │ │ │ │ ├── PoolEvaluateAutoscale.json │ │ │ │ │ ├── PoolExists.json │ │ │ │ │ ├── PoolGetLifetimeStatistics.json │ │ │ │ │ ├── PoolGet_Basic.json │ │ │ │ │ ├── PoolGet_VirtualMachineConfigurationWithExtensions.json │ │ │ │ │ ├── PoolListUsageMetrics.json │ │ │ │ │ ├── PoolList_Basic.json │ │ │ │ │ ├── PoolPatch.json │ │ │ │ │ ├── PoolRemoveNodes.json │ │ │ │ │ ├── PoolResize.json │ │ │ │ │ ├── PoolStopResize.json │ │ │ │ │ ├── PoolUpdate.json │ │ │ │ │ ├── TaskAddCollection_Basic.json │ │ │ │ │ ├── TaskAddCollection_Complex.json │ │ │ │ │ ├── TaskAdd_Basic.json │ │ │ │ │ ├── TaskAdd_ContainerSettings.json │ │ │ │ │ ├── TaskAdd_ExitConditions.json │ │ │ │ │ ├── TaskAdd_RequiredSlots.json │ │ │ │ │ ├── TaskDelete.json │ │ │ │ │ ├── TaskGet.json │ │ │ │ │ ├── TaskList.json │ │ │ │ │ ├── TaskListSubtasks.json │ │ │ │ │ ├── TaskReactivate.json │ │ │ │ │ ├── TaskTerminate.json │ │ │ │ │ └── TaskUpdate.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── bodyComplex │ │ │ ├── body-complex.json │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── complexObject │ │ │ ├── complexObject.json │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── confidentialLedger │ │ │ ├── cl.md │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── 2022-05-13 │ │ │ │ │ └── ledger │ │ │ │ │ ├── CreateLedgerEntry.json │ │ │ │ │ ├── CreateOrUpdateUser.json │ │ │ │ │ ├── DeleteUser.json │ │ │ │ │ ├── GetConstitution.json │ │ │ │ │ ├── GetCurrentLedgerEntry.json │ │ │ │ │ ├── GetEnclaveQuotes.json │ │ │ │ │ ├── GetLedgerEntry.json │ │ │ │ │ ├── GetReceipt.json │ │ │ │ │ ├── GetTransactionStatus.json │ │ │ │ │ ├── GetUser.json │ │ │ │ │ ├── ListCollections.json │ │ │ │ │ ├── ListConsortiumMembers.json │ │ │ │ │ └── ListLedgerEntries.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── keyvault │ │ │ ├── keyvault.md │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── examples │ │ │ │ └── 7.4-preview.1 │ │ │ │ │ ├── BackupCertificate-example.json │ │ │ │ │ ├── BackupKey-example.json │ │ │ │ │ ├── BackupSecret-example.json │ │ │ │ │ ├── CreateCertificate-example.json │ │ │ │ │ ├── CreateKey-example.json │ │ │ │ │ ├── DeleteCertificate-example.json │ │ │ │ │ ├── DeleteCertificateContacts-example.json │ │ │ │ │ ├── DeleteCertificateIssuer-example.json │ │ │ │ │ ├── DeleteCertificateOperation-example.json │ │ │ │ │ ├── DeleteKey-example.json │ │ │ │ │ ├── DeleteRoleAssignments-example.json │ │ │ │ │ ├── DeleteRoleDefinition-example.json │ │ │ │ │ ├── DeleteSecret-example.json │ │ │ │ │ ├── FullBackup-example.json │ │ │ │ │ ├── FullBackup-pending-example.json │ │ │ │ │ ├── FullRestore-example.json │ │ │ │ │ ├── GetCertificate-example.json │ │ │ │ │ ├── GetCertificateContacts-example.json │ │ │ │ │ ├── GetCertificateIssuer-example.json │ │ │ │ │ ├── GetCertificateIssuers-example.json │ │ │ │ │ ├── GetCertificateOperation-example.json │ │ │ │ │ ├── GetCertificatePolicy-example.json │ │ │ │ │ ├── GetCertificateVersions-example.json │ │ │ │ │ ├── GetCertificates-example.json │ │ │ │ │ ├── GetDeletedCertificate-example.json │ │ │ │ │ ├── GetDeletedCertificates-example.json │ │ │ │ │ ├── GetDeletedKey-example.json │ │ │ │ │ ├── GetDeletedKeys-example.json │ │ │ │ │ ├── GetDeletedSecret-example.json │ │ │ │ │ ├── GetDeletedSecrets-example.json │ │ │ │ │ ├── GetKey-example.json │ │ │ │ │ ├── GetKeyRotationPolicy-example.json │ │ │ │ │ ├── GetKeyVersions-example.json │ │ │ │ │ ├── GetKeys-example.json │ │ │ │ │ ├── GetRandomBytes-example.json │ │ │ │ │ ├── GetRoleAssignments-example.json │ │ │ │ │ ├── GetRoleDefinition-example.json │ │ │ │ │ ├── GetSecret-example.json │ │ │ │ │ ├── GetSecretVersions-example.json │ │ │ │ │ ├── GetSecrets-example.json │ │ │ │ │ ├── ImportCertificate-example.json │ │ │ │ │ ├── ImportKey-example.json │ │ │ │ │ ├── ListRoleAssignments-example.json │ │ │ │ │ ├── ListRoleDefinitions-example.json │ │ │ │ │ ├── ListSettings-example.json │ │ │ │ │ ├── MergeCertificate-example.json │ │ │ │ │ ├── PurgeDeletedCertificate-example.json │ │ │ │ │ ├── PurgeDeletedKey-example.json │ │ │ │ │ ├── PurgeDeletedSecret-example.json │ │ │ │ │ ├── PutRoleAssignments-example.json │ │ │ │ │ ├── PutRoleDefinition-example.json │ │ │ │ │ ├── RecoverDeletedCertificate-example.json │ │ │ │ │ ├── RecoverDeletedKey-example.json │ │ │ │ │ ├── RecoverDeletedSecret-example.json │ │ │ │ │ ├── Restore-pending-example.json │ │ │ │ │ ├── RestoreCertificate-example.json │ │ │ │ │ ├── RestoreKey-example.json │ │ │ │ │ ├── RestoreSecret-example.json │ │ │ │ │ ├── RotateKey-example.json │ │ │ │ │ ├── SelectiveRestore-example.json │ │ │ │ │ ├── SetCertificateContacts-example.json │ │ │ │ │ ├── SetCertificateIssuer-example.json │ │ │ │ │ ├── SetSecret-example.json │ │ │ │ │ ├── UpdateCertificate-example.json │ │ │ │ │ ├── UpdateCertificateIssuer-example.json │ │ │ │ │ ├── UpdateCertificateOperation-example.json │ │ │ │ │ ├── UpdateCertificatePolicy-example.json │ │ │ │ │ ├── UpdateKey-example.json │ │ │ │ │ ├── UpdateKeyRotationPolicy-example.json │ │ │ │ │ ├── UpdateSecret-example.json │ │ │ │ │ ├── UpdateSetting-example.json │ │ │ │ │ ├── backupStorageAccount.json │ │ │ │ │ ├── decrypt-example.json │ │ │ │ │ ├── deleteStorageAccount.json │ │ │ │ │ ├── deleteStorageSasDefinition.json │ │ │ │ │ ├── encrypt-example.json │ │ │ │ │ ├── getDeletedStorageAccount.json │ │ │ │ │ ├── getDeletedStorageSasDefinition.json │ │ │ │ │ ├── getStorageAccount.json │ │ │ │ │ ├── getStorageSasDefinition.json │ │ │ │ │ ├── listDeletedStorageAccount.json │ │ │ │ │ ├── listDeletedStorageSasDefinition.json │ │ │ │ │ ├── listStorageAccount.json │ │ │ │ │ ├── listStorageSasDefinition.json │ │ │ │ │ ├── purgeStorageAccount.json │ │ │ │ │ ├── recoverStorageAccount.json │ │ │ │ │ ├── recoverStorageSasDefinition.json │ │ │ │ │ ├── regenerateStorageAccountKey.json │ │ │ │ │ ├── release-example.json │ │ │ │ │ ├── restoreStorageAccount.json │ │ │ │ │ ├── securitydomaindownloadpost-example.json │ │ │ │ │ ├── securitydomainoperationstatus-example.json │ │ │ │ │ ├── securitydomaintransferkey-example.json │ │ │ │ │ ├── securitydomainuploadoperation-example.json │ │ │ │ │ ├── setStorageAccount.json │ │ │ │ │ ├── setStorageSasDefinition.json │ │ │ │ │ ├── sign-example.json │ │ │ │ │ ├── unwrapKey-example.json │ │ │ │ │ ├── updateStorageAccount.json │ │ │ │ │ ├── updateStorageSasDefinition.json │ │ │ │ │ ├── verify-example.json │ │ │ │ │ └── wrapKey-example.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── loadTest │ │ │ ├── loadTest.md │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── 2022-11-01 │ │ │ │ │ ├── CreateAndUpdateTestRun.json │ │ │ │ │ ├── CreateOrUpdateTest.json │ │ │ │ │ ├── CreateOrUpdateTestAppComponents.json │ │ │ │ │ ├── CreateOrUpdateTestRunAppComponents.json │ │ │ │ │ ├── CreateOrUpdateTestRunServerMetricsConfig.json │ │ │ │ │ ├── CreateOrUpdateTestServerMetricsConfig.json │ │ │ │ │ ├── DeleteTest.json │ │ │ │ │ ├── DeleteTestFile.json │ │ │ │ │ ├── DeleteTestRun.json │ │ │ │ │ ├── GetTest.json │ │ │ │ │ ├── GetTestFile.json │ │ │ │ │ ├── GetTestRun.json │ │ │ │ │ ├── GetTestRunFile.json │ │ │ │ │ ├── ListMetricDimensionValues.json │ │ │ │ │ ├── ListTestAppComponents.json │ │ │ │ │ ├── ListTestFiles.json │ │ │ │ │ ├── ListTestRunAppComponents.json │ │ │ │ │ ├── ListTestRunMetrics.json │ │ │ │ │ ├── ListTestRunMetricsDefinitions.json │ │ │ │ │ ├── ListTestRunMetricsNamespaces.json │ │ │ │ │ ├── ListTestRunServerMetricsConfig.json │ │ │ │ │ ├── ListTestRuns.json │ │ │ │ │ ├── ListTestServerMetricsConfig.json │ │ │ │ │ ├── ListTests.json │ │ │ │ │ ├── StopTestRun.json │ │ │ │ │ └── UploadTestFile.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── nh │ │ │ ├── nh.json │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── openAI │ │ │ ├── openai.md │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── pagination │ │ │ ├── paging.json │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── qna │ │ │ ├── qna.md │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── examples │ │ │ │ └── 2022-07-01-preview │ │ │ │ │ └── questionanswering │ │ │ │ │ ├── SuccessfulQueryKnowledgebases.json │ │ │ │ │ └── SuccessfulQueryText.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── qnaAuthoring │ │ │ ├── qna.md │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── 2023-04-01 │ │ │ │ │ └── questionanswering │ │ │ │ │ └── authoring │ │ │ │ │ ├── SuccessfulCreateProject.json │ │ │ │ │ ├── SuccessfulDeleteProject.json │ │ │ │ │ ├── SuccessfulGetProject.json │ │ │ │ │ ├── SuccessfulGetQnas.json │ │ │ │ │ ├── SuccessfulGetSources.json │ │ │ │ │ ├── SuccessfulGetSynonyms.json │ │ │ │ │ ├── SuccessfulProjectDeleteJobStatus.json │ │ │ │ │ ├── SuccessfulProjectDeployJobStatus.json │ │ │ │ │ ├── SuccessfulProjectExportJobStatus.json │ │ │ │ │ ├── SuccessfulProjectImportJobStatus.json │ │ │ │ │ ├── SuccessfulProjectListDeployments.json │ │ │ │ │ ├── SuccessfulProjectSubmitDeployJob.json │ │ │ │ │ ├── SuccessfulProjectSubmitExportJob.json │ │ │ │ │ ├── SuccessfulProjectSubmitImportJob.json │ │ │ │ │ ├── SuccessfulProjectsListProjects.json │ │ │ │ │ ├── SuccessfulUpdateActiveLearningFeedback.json │ │ │ │ │ ├── SuccessfulUpdateQnas.json │ │ │ │ │ ├── SuccessfulUpdateQnasJobStatus.json │ │ │ │ │ ├── SuccessfulUpdateSources.json │ │ │ │ │ ├── SuccessfulUpdateSourcesJobStatus.json │ │ │ │ │ └── SuccessfulUpdateSynonyms.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── qnaRuntime │ │ │ ├── qna.md │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── unknown │ │ │ │ │ ├── SuccessfulGenAns.json │ │ │ │ │ └── SuccessfulTrain.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── schemaRegistry │ │ │ ├── readme.md │ │ │ └── tsp-output │ │ │ │ ├── examples │ │ │ │ └── 2021-10 │ │ │ │ │ ├── OperationSchema_GetById.json │ │ │ │ │ ├── OperationSchema_GetByVersion.json │ │ │ │ │ ├── OperationSchema_GetSchemaGroups.json │ │ │ │ │ ├── OperationSchema_GetSchemaVersions.json │ │ │ │ │ ├── OperationSchema_QueryIdByContent.json │ │ │ │ │ └── OperationSchema_Register.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── search │ │ │ ├── readme.md │ │ │ └── tsp-output │ │ │ │ ├── client.tsp │ │ │ │ ├── examples │ │ │ │ └── 2024-11-01-preview │ │ │ │ │ ├── SearchIndexAutocompleteDocumentsGet.json │ │ │ │ │ ├── SearchIndexAutocompleteDocumentsPost.json │ │ │ │ │ ├── SearchIndexCountDocuments.json │ │ │ │ │ ├── SearchIndexGetDocument.json │ │ │ │ │ ├── SearchIndexIndexDocuments.json │ │ │ │ │ ├── SearchIndexSearchDocumentsGet.json │ │ │ │ │ ├── SearchIndexSearchDocumentsPost.json │ │ │ │ │ ├── SearchIndexSearchDocumentsSemanticGet.json │ │ │ │ │ ├── SearchIndexSearchDocumentsSemanticPost.json │ │ │ │ │ ├── SearchIndexSuggestDocumentsGet.json │ │ │ │ │ └── SearchIndexSuggestDocumentsPost.json │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ ├── url │ │ │ ├── tsp-output │ │ │ │ ├── main.tsp │ │ │ │ ├── models.tsp │ │ │ │ ├── routes.tsp │ │ │ │ └── tspconfig.yaml │ │ │ └── url.json │ │ ├── utils │ │ │ ├── check-clean-tree.js │ │ │ ├── generate-typespec.ts │ │ │ ├── printer.ts │ │ │ └── resolve-root.ts │ │ └── webpubsub │ │ │ ├── readme.md │ │ │ └── tsp-output │ │ │ ├── examples │ │ │ └── 2024-12-01 │ │ │ │ ├── HealthApi_GetServiceStatus.json │ │ │ │ ├── WebPubSub_AddConnectionToGroup.json │ │ │ │ ├── WebPubSub_AddConnectionsToGroups.json │ │ │ │ ├── WebPubSub_AddUserToGroup.json │ │ │ │ ├── WebPubSub_CheckPermission.json │ │ │ │ ├── WebPubSub_CloseAllConnections.json │ │ │ │ ├── WebPubSub_CloseConnection.json │ │ │ │ ├── WebPubSub_CloseGroupConnections.json │ │ │ │ ├── WebPubSub_CloseUserConnections.json │ │ │ │ ├── WebPubSub_ConnectionExists.json │ │ │ │ ├── WebPubSub_GenerateClientToken.json │ │ │ │ ├── WebPubSub_GrantPermission.json │ │ │ │ ├── WebPubSub_GroupExists.json │ │ │ │ ├── WebPubSub_ListConnectionsInGroup.json │ │ │ │ ├── WebPubSub_RemoveConnectionFromAllGroups.json │ │ │ │ ├── WebPubSub_RemoveConnectionFromGroup.json │ │ │ │ ├── WebPubSub_RemoveConnectionsFromGroups.json │ │ │ │ ├── WebPubSub_RemoveUserFromAllGroups.json │ │ │ │ ├── WebPubSub_RemoveUserFromGroup.json │ │ │ │ ├── WebPubSub_RevokePermission.json │ │ │ │ ├── WebPubSub_SendToAll.json │ │ │ │ ├── WebPubSub_SendToConnection.json │ │ │ │ ├── WebPubSub_SendToGroup.json │ │ │ │ ├── WebPubSub_SendToUser.json │ │ │ │ └── WebPubSub_UserExists.json │ │ │ ├── main.tsp │ │ │ ├── models.tsp │ │ │ ├── routes.tsp │ │ │ └── tspconfig.yaml │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── webpack.config.js ├── libs │ ├── autorest-schemas │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── composite-swagger.json │ │ ├── example-schema.json │ │ ├── openapi3-schema.json │ │ ├── package.json │ │ ├── swagger-extensions.json │ │ └── swagger.json │ ├── codegen │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── apiversion │ │ │ │ ├── apiversion.test.ts │ │ │ │ └── apiversion.ts │ │ │ ├── exec.ts │ │ │ ├── file-generator.ts │ │ │ ├── formatter │ │ │ │ ├── formatter.test.ts │ │ │ │ └── formatter.ts │ │ │ ├── index.ts │ │ │ ├── initializer.ts │ │ │ ├── intersect.ts │ │ │ ├── media-types.ts │ │ │ ├── pluralization.ts │ │ │ ├── safe-eval.ts │ │ │ ├── source-track.ts │ │ │ ├── text-manipulation.ts │ │ │ ├── type.ts │ │ │ ├── utility.ts │ │ │ ├── yaml-dump │ │ │ │ ├── common.ts │ │ │ │ ├── index.ts │ │ │ │ ├── readme.md │ │ │ │ └── yaml-dump.ts │ │ │ └── yaml.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── codemodel │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── .resources │ │ │ ├── all-in-one │ │ │ │ ├── json │ │ │ │ │ └── code-model.json │ │ │ │ └── yaml │ │ │ │ │ └── code-model.yaml │ │ │ └── model │ │ │ │ ├── json │ │ │ │ ├── enums.json │ │ │ │ ├── http.json │ │ │ │ ├── master.json │ │ │ │ ├── schemas.json │ │ │ │ └── types.json │ │ │ │ └── yaml │ │ │ │ ├── enums.yaml │ │ │ │ ├── http.yaml │ │ │ │ ├── master.yaml │ │ │ │ ├── schemas.yaml │ │ │ │ └── types.yaml │ │ ├── .scripts │ │ │ └── generate-schema.js │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── package.json │ │ ├── src │ │ │ ├── exports.ts │ │ │ ├── model │ │ │ │ ├── common │ │ │ │ │ ├── api-version.ts │ │ │ │ │ ├── aspect.ts │ │ │ │ │ ├── code-model.ts │ │ │ │ │ ├── deprecation.ts │ │ │ │ │ ├── example.ts │ │ │ │ │ ├── extensions.ts │ │ │ │ │ ├── external-documentation.ts │ │ │ │ │ ├── formats.ts │ │ │ │ │ ├── formats │ │ │ │ │ │ └── xml.ts │ │ │ │ │ ├── info.ts │ │ │ │ │ ├── languages.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── parameter.ts │ │ │ │ │ ├── property.ts │ │ │ │ │ ├── protocols.ts │ │ │ │ │ ├── response.ts │ │ │ │ │ ├── schema-type.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ ├── schemas.ts │ │ │ │ │ ├── schemas │ │ │ │ │ │ ├── any.ts │ │ │ │ │ │ ├── array.ts │ │ │ │ │ │ ├── binary.ts │ │ │ │ │ │ ├── choice.ts │ │ │ │ │ │ ├── conditional.ts │ │ │ │ │ │ ├── constant.ts │ │ │ │ │ │ ├── dictionary.ts │ │ │ │ │ │ ├── flag.ts │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ ├── object.ts │ │ │ │ │ │ ├── primitive.ts │ │ │ │ │ │ ├── relationship.ts │ │ │ │ │ │ ├── string.ts │ │ │ │ │ │ ├── time.ts │ │ │ │ │ │ └── usage.ts │ │ │ │ │ ├── security.ts │ │ │ │ │ ├── uid.ts │ │ │ │ │ ├── uri.ts │ │ │ │ │ └── value.ts │ │ │ │ ├── deprecated.ts │ │ │ │ ├── http │ │ │ │ │ ├── http-method.ts │ │ │ │ │ ├── http.ts │ │ │ │ │ ├── parameter-location.ts │ │ │ │ │ ├── security.ts │ │ │ │ │ ├── serialization-style.ts │ │ │ │ │ └── status-code.ts │ │ │ │ └── yaml-schema.ts │ │ │ └── tag.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── common │ │ ├── .eslintrc.yaml │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── exceptions │ │ │ │ ├── exceptions.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── logging │ │ │ │ ├── configure.ts │ │ │ │ ├── console-logger-sink.test.ts │ │ │ │ ├── console-logger-sink.ts │ │ │ │ ├── filter-logger-processor.ts │ │ │ │ ├── filter-logger.test.ts │ │ │ │ ├── formatter.test.ts │ │ │ │ ├── formatter.ts │ │ │ │ ├── index.ts │ │ │ │ ├── log-source-enhancer.ts │ │ │ │ ├── logger-source-enhancer.ts │ │ │ │ ├── logger.test.ts │ │ │ │ ├── logger.ts │ │ │ │ ├── logging-session.ts │ │ │ │ └── types.ts │ │ │ ├── merging │ │ │ │ ├── index.ts │ │ │ │ ├── merging.test.ts │ │ │ │ └── merging.ts │ │ │ └── utils │ │ │ │ ├── coloring.test.ts │ │ │ │ ├── coloring.ts │ │ │ │ ├── index.ts │ │ │ │ └── misc.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── configuration │ │ ├── .eslintrc.yaml │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── resources │ │ │ ├── default-configuration.md │ │ │ ├── directives.md │ │ │ ├── graphs.md │ │ │ ├── help-configuration.md │ │ │ ├── inspect.md │ │ │ ├── loader-openapi.md │ │ │ ├── miscellaneous.md │ │ │ ├── pipeline.md │ │ │ ├── plugin-az.md │ │ │ ├── plugin-azure-functions.md │ │ │ ├── plugin-azureresourceschema.md │ │ │ ├── plugin-csharp.md │ │ │ ├── plugin-go.md │ │ │ ├── plugin-java.md │ │ │ ├── plugin-nodejs.md │ │ │ ├── plugin-openapi-to-typespec.md │ │ │ ├── plugin-php.md │ │ │ ├── plugin-powershell.md │ │ │ ├── plugin-python.md │ │ │ ├── plugin-ruby.md │ │ │ ├── plugin-terraform.md │ │ │ ├── plugin-typescript.md │ │ │ └── plugin-validators.md │ │ ├── src │ │ │ ├── args │ │ │ │ ├── autorest-cli-args.ts │ │ │ │ ├── index.ts │ │ │ │ ├── parse-args.test.ts │ │ │ │ └── parse-args.ts │ │ │ ├── autorest-configuration.ts │ │ │ ├── autorest-normalized-configuration.ts │ │ │ ├── configuration-file-resolver.ts │ │ │ ├── configuration-loader │ │ │ │ ├── configuration-loader.ts │ │ │ │ ├── configuration-require-resolver.test.ts │ │ │ │ ├── configuration-require-resolver.ts │ │ │ │ └── index.ts │ │ │ ├── configuration-manager │ │ │ │ ├── configuration-file.ts │ │ │ │ ├── configuration-manager.test.ts │ │ │ │ ├── configuration-manager.ts │ │ │ │ └── index.ts │ │ │ ├── configuration-merging.ts │ │ │ ├── configuration-schema │ │ │ │ ├── autorest-configuration-schema.ts │ │ │ │ ├── index.ts │ │ │ │ ├── processor.test.ts │ │ │ │ ├── processor.ts │ │ │ │ └── types.ts │ │ │ ├── contants.ts │ │ │ ├── desugar.ts │ │ │ ├── directive.test.ts │ │ │ ├── directive.ts │ │ │ ├── index.ts │ │ │ ├── literate-yaml │ │ │ │ ├── error-codes.ts │ │ │ │ ├── guard.ts │ │ │ │ ├── index.ts │ │ │ │ ├── literate-yaml.test.ts │ │ │ │ ├── literate-yaml.ts │ │ │ │ └── markdown-parser.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── test │ │ │ ├── expected │ │ │ │ ├── nested-flag.yaml │ │ │ │ └── require.yaml │ │ │ ├── inputs │ │ │ │ ├── nested-flag │ │ │ │ │ └── main.md │ │ │ │ └── require │ │ │ │ │ ├── main.md │ │ │ │ │ └── other.md │ │ │ ├── scenarios.test.ts │ │ │ └── setup-jest.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── datastore │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── my-test.json.pathmap │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── cancellation.ts │ │ │ ├── constants.ts │ │ │ ├── data-store │ │ │ │ ├── data-handle.ts │ │ │ │ ├── data-sink.ts │ │ │ │ ├── data-source.ts │ │ │ │ ├── data-store.ts │ │ │ │ ├── index.ts │ │ │ │ ├── misc.ts │ │ │ │ ├── quick-data-source.ts │ │ │ │ └── read-through-data-source.ts │ │ │ ├── file-system │ │ │ │ ├── caching-file-system.ts │ │ │ │ ├── enhanced-file-system.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── file-system.ts │ │ │ │ ├── index.ts │ │ │ │ ├── memory-file-system.test.ts │ │ │ │ ├── memory-file-system.ts │ │ │ │ ├── real-file-system.test.ts │ │ │ │ └── real-file-system.ts │ │ │ ├── graph-builder.ts │ │ │ ├── json-path │ │ │ │ ├── index.ts │ │ │ │ ├── json-path.test.ts │ │ │ │ └── json-path.ts │ │ │ ├── json-pointer │ │ │ │ ├── index.ts │ │ │ │ └── json-pointer.ts │ │ │ ├── lazy.ts │ │ │ ├── logger.ts │ │ │ ├── main.ts │ │ │ ├── mapping-tree │ │ │ │ ├── index.ts │ │ │ │ ├── mapping-tree.test.ts │ │ │ │ └── mapping-tree.ts │ │ │ ├── parsing │ │ │ │ └── text-utility.ts │ │ │ ├── processor.ts │ │ │ ├── source-map │ │ │ │ ├── blaming.ts │ │ │ │ ├── index.ts │ │ │ │ ├── path-source-map.test.ts │ │ │ │ ├── path-source-map.ts │ │ │ │ ├── position-source-map.ts │ │ │ │ ├── source-map-data.ts │ │ │ │ └── source-map.ts │ │ │ └── transformer-via-pointer.ts │ │ ├── test │ │ │ └── resources │ │ │ │ └── fake-fs │ │ │ │ ├── foo.txt │ │ │ │ └── readme.md │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── deduplication │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ └── main.ts │ │ ├── test │ │ │ └── hello.test.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── extension-base │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── code-model-v1.d.ts │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── autorest-extension.ts │ │ │ ├── extension-host.ts │ │ │ ├── extension-logger.ts │ │ │ ├── index.ts │ │ │ ├── session.ts │ │ │ ├── testing │ │ │ │ ├── index.ts │ │ │ │ └── test-session.ts │ │ │ └── types.ts │ │ ├── testing.d.ts │ │ ├── testing.js │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── extension │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── jest.e2e.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── exceptions.ts │ │ │ ├── exec-cmd.ts │ │ │ ├── extension │ │ │ │ ├── extension.ts │ │ │ │ ├── index.ts │ │ │ │ ├── local-extension.ts │ │ │ │ └── package.ts │ │ │ ├── index.ts │ │ │ ├── locks │ │ │ │ ├── async-lock.test.ts │ │ │ │ └── async-lock.ts │ │ │ ├── logger.ts │ │ │ ├── main.ts │ │ │ ├── npm.ts │ │ │ ├── package-manager.ts │ │ │ └── yarn.ts │ │ ├── test │ │ │ └── test-extensions.e2e.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── json │ │ ├── .eslintrc.yaml │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── Readme.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── json-pointer │ │ │ │ ├── json-pointer.test.ts │ │ │ │ └── json-pointer.ts │ │ │ ├── traverse │ │ │ │ ├── traverse.test.ts │ │ │ │ └── traverse.ts │ │ │ └── utils │ │ │ │ ├── utils.test.ts │ │ │ │ └── utils.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── jsonschema │ │ ├── .eslintrc.yaml │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── Readme.md │ │ ├── index.ts │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── refs.test.ts │ │ │ └── refs.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── oai2-to-oai3 │ │ ├── .eslintignore │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── content-type-utils.ts │ │ │ ├── converter.ts │ │ │ ├── index.ts │ │ │ ├── refs-utils.ts │ │ │ ├── runner │ │ │ │ ├── index.ts │ │ │ │ ├── oai2-to-oai3-runner.ts │ │ │ │ └── utils.ts │ │ │ └── status-codes.ts │ │ ├── test │ │ │ ├── conversion.test.ts │ │ │ ├── mappings.test.ts │ │ │ ├── resources │ │ │ │ └── conversion │ │ │ │ │ ├── oai2 │ │ │ │ │ ├── ApiManagementClient-swagger.json │ │ │ │ │ ├── additionalProperties.json │ │ │ │ │ ├── complex-model.json │ │ │ │ │ ├── default-response.json │ │ │ │ │ ├── exec-service.json │ │ │ │ │ ├── extensible-enums-swagger.json │ │ │ │ │ ├── header.json │ │ │ │ │ ├── lro.json │ │ │ │ │ ├── luis.json │ │ │ │ │ ├── required-optional.json │ │ │ │ │ ├── storage.json │ │ │ │ │ ├── url-multi-collectionFormat.json │ │ │ │ │ ├── url.json │ │ │ │ │ ├── validation.json │ │ │ │ │ ├── xml-service.json │ │ │ │ │ └── xms-error-responses.json │ │ │ │ │ └── oai3 │ │ │ │ │ ├── ApiManagementClient-openapi.json │ │ │ │ │ ├── additionalProperties.json │ │ │ │ │ ├── complex-model.json │ │ │ │ │ ├── default-response.json │ │ │ │ │ ├── exec-service.json │ │ │ │ │ ├── extensible-enums-swagger.json │ │ │ │ │ ├── header.json │ │ │ │ │ ├── lro.json │ │ │ │ │ ├── luis.json │ │ │ │ │ ├── storage.json │ │ │ │ │ ├── url-multi-collectionFormat.json │ │ │ │ │ ├── url.json │ │ │ │ │ ├── validation.json │ │ │ │ │ ├── xml-service.json │ │ │ │ │ └── xms-error-responses.json │ │ │ ├── scenarios │ │ │ │ ├── expected │ │ │ │ │ ├── cross-file-body-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ ├── other.json.mappings.txt │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── cross-file-parameterized-host-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ ├── other.json.mappings.txt │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── cross-file-parameters-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ ├── other.json.mappings.txt │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── cross-file-schema-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ ├── other.json.mappings.txt │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── enums │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── final-state-schema │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── parameterized-host-parameters │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── request-body │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ ├── responses-examples │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ │ └── responses-ref │ │ │ │ │ │ ├── swagger.json │ │ │ │ │ │ └── swagger.json.mappings.txt │ │ │ │ ├── inputs │ │ │ │ │ ├── cross-file-body-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── cross-file-parameterized-host-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── cross-file-parameters-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── cross-file-schema-refs │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── enums │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── final-state-schema │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── parameterized-host-parameters │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── request-body │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── responses-examples │ │ │ │ │ │ └── swagger.json │ │ │ │ │ └── responses-ref │ │ │ │ │ │ └── swagger.json │ │ │ │ └── scenarios.test.ts │ │ │ └── setup-jest.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── openapi │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── utils.test.ts │ │ │ ├── utils.ts │ │ │ ├── v2 │ │ │ │ ├── definition.ts │ │ │ │ ├── document.ts │ │ │ │ ├── header.ts │ │ │ │ ├── index.ts │ │ │ │ ├── parameter.ts │ │ │ │ └── paths.ts │ │ │ ├── v3 │ │ │ │ ├── common.ts │ │ │ │ ├── deprecated.ts │ │ │ │ ├── formats.ts │ │ │ │ ├── index.ts │ │ │ │ └── oai3.ts │ │ │ └── workspace.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── system-requirements │ │ ├── .eslintrc.yaml │ │ ├── .npmignore │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── jest.config.js │ │ ├── jest.e2e.config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── common.test.ts │ │ │ ├── common.ts │ │ │ ├── dotnet.test.ts │ │ │ ├── dotnet.ts │ │ │ ├── exec-cmd.ts │ │ │ ├── generic.ts │ │ │ ├── index.ts │ │ │ ├── java.test.ts │ │ │ ├── java.ts │ │ │ ├── logger.ts │ │ │ ├── python.test.ts │ │ │ ├── python.ts │ │ │ ├── system-requirements.test.ts │ │ │ ├── system-requirements.ts │ │ │ ├── types.ts │ │ │ ├── version.test.ts │ │ │ └── version.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ └── yaml │ │ ├── .eslintrc.yaml │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── Readme.md │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ ├── index.ts │ │ ├── parser.test.ts │ │ ├── parser.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json ├── testing │ ├── test-public-packages │ │ ├── .eslintrc.yaml │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── test-autorest-core.ts │ │ │ └── test-autorest.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ └── test-utils │ │ ├── .eslintrc.yaml │ │ ├── CHANGELOG.json │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ ├── data-store-test-utils.ts │ │ ├── index.ts │ │ ├── logging.ts │ │ └── matchers │ │ │ ├── file-snapshot.ts │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json └── tools │ └── compare │ ├── .eslintrc.yaml │ ├── .gitignore │ ├── CHANGELOG.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── definitions │ └── index.d.ts │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ ├── cli.ts │ ├── comparers.ts │ ├── config.ts │ ├── index.ts │ ├── languages │ │ ├── python.ts │ │ └── typescript.ts │ ├── operations.ts │ ├── printer.ts │ ├── runner.ts │ └── util.ts │ ├── test │ ├── artifacts │ │ ├── python │ │ │ ├── new │ │ │ │ └── models.py │ │ │ └── old │ │ │ │ └── models.py │ │ └── typescript │ │ │ ├── new │ │ │ └── index.ts │ │ │ └── old │ │ │ └── index.ts │ └── languages │ │ ├── python.spec.ts │ │ └── typescript.spec.skip.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── readme.md ├── regression-tests ├── package.json ├── regression-compare.yaml ├── smoke-tests.ps1 └── smoke-tests.yaml ├── rush.json ├── schemas └── aad-token-security.json ├── tsconfig.base.json ├── tsconfig.json └── tsconfig.ws.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/ISwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/Models/Category.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/Models/Order.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/Models/Pet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/Models/Tag.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/Models/User.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/Models/XmlSerialization.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/SwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/Client/SwaggerPetstoreExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1a-code-generation-minimal/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp.Fluent/Generated/Models/Error.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/ISwaggerPetstoreClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/Models/Error.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/Models/ErrorException.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/Models/ListPetsHeaders.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/Models/Pet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/SwaggerPetstoreClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.CSharp/SwaggerPetstoreClientExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.NodeJS/lib/models/errorModel.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.NodeJS/lib/models/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.NodeJS/lib/models/pet.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.NodeJS/lib/swaggerPetstore.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Python/cowstore/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Python/cowstore/models/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Python/cowstore/models/error.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Python/cowstore/models/pet.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Python/cowstore/swagger_petstore.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Python/cowstore/version.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Azure.Ruby/1.0.0/generated/petstore.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/ISwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/Models/Error.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/Models/ErrorException.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/Models/ListPetsHeaders.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/Models/Pet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/SwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/CSharp/SwaggerPetstoreExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Go/client.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Go/cowstoreapi/interfaces.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Go/models.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Go/version.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/NodeJS/lib/models/errorModel.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/NodeJS/lib/models/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/NodeJS/lib/models/pet.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/NodeJS/lib/swaggerPetstore.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Python/cowstore/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Python/cowstore/models/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Python/cowstore/models/error.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Python/cowstore/models/pet.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Python/cowstore/swagger_petstore.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Python/cowstore/version.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Ruby/generated/petstore.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Ruby/generated/petstore/models/error.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Ruby/generated/petstore/models/pet.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Ruby/generated/petstore/module_definition.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/Ruby/generated/petstore/swagger_petstore.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/1b-code-generation-multilang/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/DataSources.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/DataSourcesExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IDataSources.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IIndexers.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IIndexes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/ISearchandStorage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IStorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Indexers.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IndexersExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Indexes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/IndexesExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/CheckNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/CorsOptions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/DataChangeDetectionPolicy.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/DataContainer.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/DataDeletionDetectionPolicy.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/DataSource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/DataSourceCredentials.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/Index.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/Indexer.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/IndexerExecutionStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/IndexerStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/IndexingParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/ItemError.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/ScoringFunctionAggregation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/ScoringFunctionInterpolation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/SearchRequestOptions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/StorageAccountCreateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/StorageAccountListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/SuggesterSearchMode.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/TagScoringParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/UsageListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/SearchandStorage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/StorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/StorageAccountsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/Client/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1c-multiple-input-swaggers/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/Page.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/StorageAccountsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/AzureClient/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/IStorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/UsageListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/StorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/StorageAccountsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/base/folder/Client/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1d-common-settings/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1e-help/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/1e-help/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/1f-output-to-stdout/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/1f-output-to-stdout/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/IStorageAccountsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/CheckNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/Page.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/StorageAccountCreateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/StorageAccountRegenerateKeyParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/StorageAccountUpdateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/StorageAccountsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/StorageAccountsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/CSharp/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/StorageAccounts.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/StorageManagementClient.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/Usages.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/implementation/UsagesImpl.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/implementation/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/AccountStatus.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/AccountType.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/CustomDomain.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/Endpoints.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/PageImpl.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/ProvisioningState.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/Reason.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/StorageAccount.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/StorageAccountKeys.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/Usage.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/UsageName.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/UsageUnit.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/models/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Java/src/main/java/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/checkNameAvailabilityResult.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/customDomain.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/endpoints.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/resource.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/storageAccount.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/storageAccountCreateParameters.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/storageAccountKeys.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/storageAccountListResult.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/storageAccountUpdateParameters.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/usage.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/usageListResult.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/models/usageName.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/operations/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/operations/storageAccounts.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/operations/usageOperations.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/NodeJS/lib/storageManagementClient.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/check_name_availability_result.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/custom_domain.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/endpoints.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/resource.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/storage_account.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/storage_account_keys.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/storage_account_paged.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/storage_management_client_enums.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/usage.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/usage_name.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/models/usage_paged.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/operations/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/operations/storage_accounts_operations.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/operations/usage_operations.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/storage_management_client.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Python/storage/version.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/account_type.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/custom_domain.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/endpoints.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/reason.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/resource.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/usage.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/usage_name.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/models/usage_unit.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/module_definition.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/storage_accounts.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/Ruby/2015-06-15/generated/storage/usage_operations.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/2a-validation/shell/code.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Samples/openapi-v2/2b-suppressions/shell/code.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/IQueryKeysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/ISearchManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/IServicesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/AzureAsyncOperationResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/Error.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/ErrorDetails.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/ErrorException.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/ListQueryKeysResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/NetworkOperationStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/NetworkOperationStatusConverter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/QueryKey.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/SearchServiceListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/SearchServiceProperties.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/SearchServiceResource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/Models/SubResource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/QueryKeysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/QueryKeysOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/SearchManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/ServicesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/Client/ServicesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3a-literate-swagger/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/CheckNameAvailabilityOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/ICheckNameAvailabilityOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/IStorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/IUsagesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/CheckNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/Page.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/StorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/StorageAccountsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/UsagesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/Client/UsagesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3b-custom-transformations/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/IStorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/CheckNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/StorageAccountCreateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/StorageAccountListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/StorageAccountRegenerateKeyParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/StorageAccountUpdateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/UsageListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/StorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/StorageAccountsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/Client/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/StorageAccounts.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/StorageManagementClient.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/Usages.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/implementation/UsagesImpl.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/implementation/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/AccountStatus.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/AccountType.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/CustomDomain.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/Endpoints.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/ProvisioningState.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/Reason.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/Resource.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/StorageAccount.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/StorageAccountKeys.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/Usage.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/UsageListResult.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/UsageName.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/UsageUnit.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/models/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/OtherClient/src/main/java/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3c-guards/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/IStorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/CheckNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/StorageAccountCreateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/StorageAccountListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/StorageAccountUpdateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/UsageListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/StorageAccounts.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/StorageAccountsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/Client/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3d-custom-validation/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/IStorageAccountsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/IStorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/IUsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/AccountStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/AccountType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/CheckNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/CustomDomain.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/Endpoints.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/Page.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/Reason.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/StorageAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/StorageAccountCreateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/StorageAccountKeys.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/StorageAccountRegenerateKeyParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/StorageAccountUpdateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/StorageAccountsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/StorageAccountsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/StorageManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/UsageOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output1/UsageOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/StorageAccounts.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/StorageManagementClient.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/Usages.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/implementation/UsagesImpl.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/implementation/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/AccountStatus.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/AccountType.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/CustomDomain.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/Endpoints.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/ProvisioningState.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/Reason.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/Resource.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/StorageAccount.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/StorageAccountKeys.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/Usage.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/UsageListResult.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/UsageName.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/UsageUnit.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/models/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output2/src/main/java/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/composed_cowbell_client.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/account_status.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/account_type.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/category.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/custom_domain.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/endpoints.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/impact.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/operation_entity.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/provisioning_state.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/reason.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/resource.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/risk.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/short_description.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/storage_account.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/storage_account_keys.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/suppression_contract.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/usage.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/usage_list_result.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/usage_name.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/models/usage_unit.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/module_definition.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/operations.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/recommendations.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/storage_accounts.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/suppressions.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/output3/generated/advisor/usage_operations.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3e-batch-mode/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3f-example-generation/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3f-example-generation/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3f-example-generation/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3g-require-config/.gitignore: -------------------------------------------------------------------------------- 1 | Client/* 2 | !Client/SwaggerPetstore.cs -------------------------------------------------------------------------------- /Samples/openapi-v2/3g-require-config/Client/SwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3g-require-config/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3g-require-config/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3g-require-config/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3h-try-require/.gitignore: -------------------------------------------------------------------------------- 1 | Client/* 2 | !Client/SwaggerPetstore.cs -------------------------------------------------------------------------------- /Samples/openapi-v2/3h-try-require/Client/SwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v2/3h-try-require/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v2/3h-try-require/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v2/3h-try-require/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/ISwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/Models/Error.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/Models/ErrorException.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/Models/ListPetsHeaders.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/Models/Pet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/SwaggerPetstore.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/Client/SwaggerPetstoreExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/openapi-v3/1a-code-generation-minimal/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/Client/CowbellUniversity.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/Client/ICowbellUniversity.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/Client/Models/Cowbell1a.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/Client/Models/Cowbell1b.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/Client/Models/Cowbell2a.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/Client/Models/Cowbell2b.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/additional-properties-boolean/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Deprecated.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/IDeprecated.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/IPath.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/ChildPet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum1Custom.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum1No.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum1Replaced.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum1Yes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2Custom.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2CustomConverter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2No.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2NoConverter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2Replaced.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2ReplacedConverter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2Yes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum2YesConverter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum3Custom.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum3No.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum3Replaced.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Enum3Yes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/Pet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/PetCustom.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/PetNo.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/PetReplaced.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Models/PetYes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/Path.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientCSharp/PathExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientGo/api/interfaces.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientGo/client.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientGo/models.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientGo/path.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientGo/version.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/Deprecated.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/Paths.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/implementation/DeprecatedImpl.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/implementation/PathsImpl.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/implementation/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/ChildPet.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum1Custom.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum1No.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum1Replaced.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum1Yes.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum2Custom.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum2No.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum2Replaced.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum2Yes.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum3Custom.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum3No.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum3Replaced.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Enum3Yes.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/Pet.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/PetCustom.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/PetNo.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/PetReplaced.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/PetYes.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/models/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientJava/src/main/java/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/deprecated.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/childPet.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/pet.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/petCustom.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/petNo.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/petReplaced.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/models/petYes.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/operations/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientNode/lib/operations/path.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/deprecated.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/child_pet.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/deprecated_enums.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/pet.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/pet_custom.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/pet_no.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/pet_replaced.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/models/pet_yes.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/operations/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/operations/path_operations.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientPython/deprecated/version.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/deprecated.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/child_pet.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum1custom.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum1no.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum1replaced.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum1yes.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum2custom.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum2no.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum2replaced.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum2yes.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum3custom.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum3no.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum3replaced.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/enum3yes.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/pet.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/pet_custom.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/pet_no.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/pet_replaced.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/models/pet_yes.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/module_definition.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/ClientRuby/generated/deprecated/path.rb: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/deprecated/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/deprecated/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/empty-class/Client/ITest.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/empty-class/Client/ITestAPI.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/empty-class/Client/Models/EmptyClass.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/empty-class/Client/Test.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/empty-class/Client/TestAPI.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/empty-class/Client/TestExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/empty-class/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/empty-class/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/empty-class/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ApplicationGatewaysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ApplicationGatewaysOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/BgpServiceCommunitiesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/BgpServiceCommunitiesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteCircuitAuthorizationsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteCircuitPeeringsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteCircuitPeeringsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteCircuitsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteCircuitsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteServiceProvidersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ExpressRouteServiceProvidersOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IApplicationGatewaysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IBgpServiceCommunitiesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IExpressRouteCircuitAuthorizationsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IExpressRouteCircuitPeeringsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IExpressRouteCircuitsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IExpressRouteServiceProvidersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ILoadBalancersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ILocalNetworkGatewaysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/INetworkClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/INetworkInterfacesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/INetworkSecurityGroupsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/INetworkWatchersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IPacketCapturesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IPublicIPAddressesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IRouteFilterRulesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IRouteFiltersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IRouteTablesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IRoutesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ISecurityRulesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/ISubnetsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IUsagesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IVirtualNetworkGatewayConnectionsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IVirtualNetworkGatewaysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IVirtualNetworkPeeringsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/IVirtualNetworksOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/LoadBalancersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/LoadBalancersOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/LocalNetworkGatewaysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/LocalNetworkGatewaysOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Access.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/AddressSpace.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApiVersion.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGateway.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayBackendAddress.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayBackendAddressPool.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayBackendHealth.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayBackendHealthPool.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayBackendHealthServer.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayBackendHttpSettings.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayConnectionDraining.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayCookieBasedAffinity.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayFirewallMode.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayFrontendIPConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayFrontendPort.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayHttpListener.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayIPConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayOperationalState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayPathRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayProbe.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayProtocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayRequestRoutingRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayRequestRoutingRuleType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewaySku.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewaySkuName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewaySslCertificate.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewaySslPolicy.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewaySslProtocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayTier.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ApplicationGatewayUrlPathMap.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/AssociationType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/AuthorizationUseStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/AzureAsyncOperationResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BGPCommunity.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BackendAddressPool.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BgpPeerState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BgpPeerStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BgpPeerStatusListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BgpServiceCommunity.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/BgpSettings.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ConnectionResetSharedKey.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ConnectionSharedKey.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/DhcpOptions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Direction.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/DnsNameAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveNetworkSecurityGroup.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveNetworkSecurityGroupAssociation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveNetworkSecurityGroupListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveNetworkSecurityRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveRoute.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveRouteListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveRouteSource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/EffectiveRouteState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Error.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ErrorDetails.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitArpTable.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitAuthorization.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitPeering.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitPeeringConfig.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitPeeringState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitPeeringType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitRoutesTable.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitRoutesTableSummary.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitSku.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitSkuFamily.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitSkuTier.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitStats.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitsArpTableListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteCircuitsRoutesTableListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ExpressRouteServiceProvider.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/FlowLogInformation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/FlowLogStatusParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/FrontendIPConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/GatewayRoute.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/GatewayRouteListResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/IPAddressAvailabilityResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/IPAllocationMethod.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/IPConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/IPVersion.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/InboundNatPool.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/InboundNatRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/LoadBalancer.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/LoadBalancingRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/LoadDistribution.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/LocalNetworkGateway.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkInterface.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkInterfaceAssociation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkInterfaceDnsSettings.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkInterfaceIPConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkOperationStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkSecurityGroup.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NetworkWatcher.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NextHopParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NextHopResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/NextHopType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/OutboundNatRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PacketCapture.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PacketCaptureFilter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PacketCaptureParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PacketCaptureQueryStatusResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PacketCaptureResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PacketCaptureStorageLocation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Page.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Page1.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PatchRouteFilter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PatchRouteFilterRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PcError.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PcProtocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PcStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Probe.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ProbeProtocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ProcessorArchitecture.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Protocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PublicIPAddress.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/PublicIPAddressDnsSettings.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/QueryTroubleshootingParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ResourceNavigationLink.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/RetentionPolicyParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Route.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/RouteFilter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/RouteFilterRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/RouteFilterRuleType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/RouteNextHopType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/RouteTable.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityGroupNetworkInterface.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityGroupViewParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityGroupViewResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityRule.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityRuleAccess.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityRuleAssociations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityRuleDirection.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SecurityRuleProtocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/ServiceProviderProvisioningState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SubResource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Subnet.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/SubnetAssociation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Topology.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TopologyAssociation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TopologyParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TopologyResource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TransportProtocol.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TroubleshootingDetails.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TroubleshootingParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TroubleshootingRecommendedActions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TroubleshootingResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/TunnelConnectionHealth.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/Usage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/UsageName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/UsageUnit.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VerificationIPFlowParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VerificationIPFlowResult.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetwork.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGateway.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewayConnection.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewayConnectionStatus.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewayConnectionType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewayIPConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewaySku.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewaySkuName.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewaySkuTier.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkGatewayType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkPeering.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VirtualNetworkPeeringState.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VpnClientConfiguration.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VpnClientParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VpnClientRevokedCertificate.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VpnClientRootCertificate.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/Models/VpnType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkClientExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkInterfacesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkInterfacesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkSecurityGroupsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkSecurityGroupsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkWatchersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/NetworkWatchersOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/PacketCapturesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/PacketCapturesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/PublicIPAddressesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/PublicIPAddressesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RouteFilterRulesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RouteFilterRulesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RouteFiltersOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RouteFiltersOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RouteTablesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RouteTablesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RoutesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/RoutesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/SecurityRulesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/SecurityRulesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/SubnetsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/SubnetsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/UsagesOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/UsagesOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworkGatewayConnectionsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworkGatewaysOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworkGatewaysOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworkPeeringsOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworkPeeringsOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworksOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/Client/VirtualNetworksOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/end-to-end/network/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/config-bad-syntax/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-bad-schema/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-json-bad-syntax/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-json-good/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-json-good/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-json-good/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-bad-fence/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-bad-fence/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-bad-fence/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-bad-syntax/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-good/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-good/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-md-good/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-not-swagger/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-not-swagger/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-not-swagger/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-file-reference/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-reference/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-syntax/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-type/Client/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-type/Client/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-type/Client/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-bad-type/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/Client/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/Client/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/Client/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/Client/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/Client/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/Client/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/error-behavior/openapi-yaml-good/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/hidden-methods/Client/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/Client/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/Client/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/Client/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/Client/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/Client/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/ClientFancy/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/ClientFancy/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/ClientFancy/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/ClientFancy/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/ClientFancy/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/ClientFancy/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/hidden-methods/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/hidden-methods/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/hidden-methods/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/ClientCSharp/CowbellInspection.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/ClientCSharp/ICowbellInspection.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/ClientCSharp/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/ClientCSharp/Models/CowbellBase.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/ClientCSharp/Models/CowbellKing.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/ClientCSharp/Models/SecureString.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/multi-level-inheritance/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/reflect-api-versions/.gitignore: -------------------------------------------------------------------------------- 1 | SdkClient/**/*.cs 2 | !SdkClient/SdkInfo_*.cs -------------------------------------------------------------------------------- /Samples/test/reflect-api-versions/SdkClient/SdkInfo_Compute.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/reflect-api-versions/SdkClient/SdkInfo_ComputeManagementClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/reflect-api-versions/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/reflect-api-versions/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/reflect-api-versions/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/remove-methods/Client/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/Client/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/Client/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/Client/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/Client/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/Client/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/ClientFancy/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/ClientFancy/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/ClientFancy/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/ClientFancy/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/ClientFancy/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/ClientFancy/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/remove-methods/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/remove-methods/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/BatchAccountOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/BatchAccountOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/BatchManagementDummyClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/IBatchAccountOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/IBatchManagementDummyClient.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/AutoStorageBaseProperties.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/BatchAccount.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/BatchAccountCreateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/BatchAccountDeleteHeaders.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/BatchAccountUpdateParameters.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/KeyVaultReference.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/Operation.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/OperationDisplay.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/Resource.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/Client/Models/RetryHeader.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/shared-response-header-types/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/CowbellModerator.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/ICowbellModerator.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/IImage.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/IText.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Image.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/ImageExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Models/ContentTypes.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Models/ContentTypesConverter.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Models/ImageType.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Models/ImageTypeRestricted.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Models/ImageTypeRestrictedStrings.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/Text.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientCSharp/TextExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientGo/api/interfaces.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientGo/client.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientGo/image.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientGo/models.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientGo/text.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientGo/version.go: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/CowbellModerator.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/Images.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/Texts.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/models/ContentTypes.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/models/ImageType.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/models/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientJava/src/main/java/package-info.java: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientNode/lib/cowbellModerator.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientNode/lib/operations/image.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientNode/lib/operations/index.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientNode/lib/operations/text.js: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientPython/streamwithcontenttype/__init__.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/ClientPython/streamwithcontenttype/version.py: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/stream-with-content-type/shell/code.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/Client/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/Client/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/Client/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/Client/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/Client/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/Client/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/ClientFancy/CowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/ClientFancy/CowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/ClientFancy/CowbellOperationsExtensions.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/ClientFancy/ICowbellFactory.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/ClientFancy/ICowbellOperations.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/ClientFancy/Models/Cowbell.cs: -------------------------------------------------------------------------------- 1 | SRC -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/shell/code.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/shell/stderr.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Samples/test/use-default-in-constructor/shell/stdout.txt: -------------------------------------------------------------------------------- 1 | https://aka.ms/autorest 2 | -------------------------------------------------------------------------------- /packages/apps/autorest/.eslintignore: -------------------------------------------------------------------------------- 1 | definitions/core.d.ts 2 | definitions/vscode.d.ts -------------------------------------------------------------------------------- /packages/apps/autorest/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz -------------------------------------------------------------------------------- /packages/extensions/core/src/commands/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./help"; 2 | -------------------------------------------------------------------------------- /packages/extensions/modelerfour/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /packages/extensions/openapi-to-typespec/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /packages/extensions/openapi-to-typespec/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./main"; 2 | -------------------------------------------------------------------------------- /packages/libs/codegen/src/yaml-dump/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./yaml-dump"; 2 | -------------------------------------------------------------------------------- /packages/libs/common/src/exceptions/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./exceptions"; 2 | -------------------------------------------------------------------------------- /packages/libs/common/src/merging/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./merging"; 2 | -------------------------------------------------------------------------------- /packages/libs/datastore/src/json-path/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./json-path"; 2 | -------------------------------------------------------------------------------- /packages/libs/datastore/src/json-pointer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./json-pointer"; 2 | -------------------------------------------------------------------------------- /packages/libs/datastore/src/mapping-tree/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./mapping-tree"; 2 | -------------------------------------------------------------------------------- /packages/libs/datastore/test/resources/fake-fs/foo.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /packages/libs/datastore/test/resources/fake-fs/readme.md: -------------------------------------------------------------------------------- 1 | # THis is a readme 2 | -------------------------------------------------------------------------------- /packages/libs/extension-base/src/testing/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./test-session"; 2 | -------------------------------------------------------------------------------- /packages/libs/json/Readme.md: -------------------------------------------------------------------------------- 1 | # Library to interact with json objects 2 | -------------------------------------------------------------------------------- /packages/libs/jsonschema/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./refs"; 2 | -------------------------------------------------------------------------------- /packages/libs/jsonschema/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./refs"; 2 | -------------------------------------------------------------------------------- /packages/libs/oai2-to-oai3/.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /packages/libs/oai2-to-oai3/src/runner/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./oai2-to-oai3-runner"; 2 | -------------------------------------------------------------------------------- /packages/libs/openapi/src/v3/common.ts: -------------------------------------------------------------------------------- 1 | export type EnumStr<T extends string> = `${T}`; 2 | -------------------------------------------------------------------------------- /packages/libs/yaml/Readme.md: -------------------------------------------------------------------------------- 1 | # Library to interact with json objects 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } 4 | --------------------------------------------------------------------------------